Warning: The magic method Slickr_Flickr_Plugin::__wakeup() must have public visibility in /home/kenbauer/public_kenscourses/tc101fall2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php on line 152

Warning: Cannot modify header information - headers already sent by (output started at /home/kenbauer/public_kenscourses/tc101fall2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php:152) in /home/kenbauer/public_kenscourses/tc101fall2015/wp-includes/feed-rss2.php on line 8
‘Quiz11’ Articles at TC101 Fall 2015 https://kenscourses.com/tc101fall2015 Introduction to Programming Python and C++ Mon, 23 Nov 2015 05:43:14 +0000 en hourly 1 https://creativecommons.org/licenses/by/4.0/ Quiz 11.1 https://kenscourses.com/tc101fall2015/2015/quiz-11-1/ Mon, 23 Nov 2015 05:43:14 +0000 http://fernandazm.wordpress.com/?p=104 Sorry for being so late I did my code since yesterday but I really had a busy and stressed weekend

Hope is not too late

Here is my code:

 

https://github.com/fernandazm/WSQS/blob/master/Quiz%2011

]]>
https://creativecommons.org/licenses/by/4.0/
Quiz 11 https://kenscourses.com/tc101fall2015/2015/quiz-11-26/ Mon, 23 Nov 2015 05:31:20 +0000 http://marinaruelas.wordpress.com/?p=135 I forgot to publish my wordpress but I did my github code on time for the number e, but honestly I did it because I thought about it before while trying to do the WSQ.

https://github.com/marinaruelas/WSQ/blob/master/Quiz%2011.2

 

]]>
https://creativecommons.org/licenses/by/4.0/
Quiz 11 https://kenscourses.com/tc101fall2015/2015/quiz-11-23/ Sun, 22 Nov 2015 06:38:20 +0000 http://luisgarciadaniel01.wordpress.com/?p=101 Sorry for the lateness! but I totally forgot at the end of the day to upload these guys!!! Cheers!

Question 1

Question 2

GIANT BANANA!!!110701_banana_car_660.jpg

via: komonews.com

]]>
https://creativecommons.org/licenses/by/4.0/
QUIZ #11 https://kenscourses.com/tc101fall2015/2015/quiz-11-20/ Sun, 22 Nov 2015 06:05:22 +0000 http://asimplemaniseepythonipresslike.wordpress.com/?p=139 ]]> Here´s my Quiz 11, I have a little doubts in the first one but I can finally understand what it means 😀

PIC BY STEWART TURKINGTON
www.stphotos.co.uk
07778 334771

Here’s my code:

https://github.com/cesarau04/WSQ/blob/master/Quiz%2311-problem1.py

https://github.com/cesarau04/WSQ/blob/master/Quiz%2311-problem2.py

 

]]>
https://creativecommons.org/licenses/by/4.0/
Quiz 11 https://kenscourses.com/tc101fall2015/2015/quiz-11-24/ Sun, 22 Nov 2015 06:02:58 +0000 http://giorgio6859.wordpress.com/?p=89 ]]> Question 1

 

//Quiz Euler
#include <iostream>
using namespace std;

float fact (float e) {
int q,w;
q = 0;
w = 1;
while (q<e) {
w = w*(q+1);
q = q+1;}
return w;}

// x=número de factorial al que llegará el denominador
int main(){
cout<<“¿Hasta qué factorial quieres llegar en el denominador?”<<endl;
int x;
cin>>x;
int i;
float s=1;
for(i=1;i<=x;i++){
s=s+1/fact(i);
}
cout<<“elnúmero de Euler llegando hasta tener el factorial de “<<x<<” en el denominador es “<<s<<endl;
return 0;}

Question 2

//Quiz Banana
#include <iostream>
#include <fstream>
#include <string>
using namespace std;

int main(){
ifstream archivo(“archivo.txt”);
string renglon;
int c=0;//contador

while (1){
getline(archivo,renglon);//se hace un string
int x;//Para el for
for(x=0;x<renglon.length();x++){
if(renglon[x]==’b’or renglon[x]==’B’){
if(renglon[x+1]==’a’or renglon[x+1]==’A’){
if(renglon[x+2]==’n’or renglon[x+2]==’N’){
if(renglon[x+3]==’a’or renglon[x+3]==’A’){
if(renglon[x+4]==’n’or renglon[x+4]==’N’){
if(renglon[x+5]==’a’or renglon[x+5]==’A’){
c=c+1;
}
}
}
}
}
}
else{
continue;}
}
if (archivo.eof()) break;//el while se detiene cuando termina el archivo
}
cout<<“La palabra banana se encuentra “<<c<<” veces en el archivo.”<<endl;
return 0;}

]]>
https://creativecommons.org/licenses/by/4.0/
#Quiz 11 https://kenscourses.com/tc101fall2015/2015/quiz-11-21/ Sun, 22 Nov 2015 05:59:18 +0000 http://brayangcblog.wordpress.com/?p=97 ]]> 22411226528_fba528bf28_z

Photo credit: https://flic.kr/p/A9poRo

The quiz was so difficult but I see tutorials and blogs of my classmates.

Here are my codes:

Question 1:

https://github.com/BrayanGc/Codigos/blob/master/Quiz11_1.cpp

Question 2:

https://github.com/BrayanGc/Codigos/blob/master/Quiz11_2.cpp

 

]]>
https://creativecommons.org/licenses/by/4.0/
Quiz 11 https://kenscourses.com/tc101fall2015/2015/quiz-11-22/ Sun, 22 Nov 2015 05:51:25 +0000 http://opezaimd.tumblr.com/post/133705767540

I tried Quiz 11 before doing WSQ14 and I had no idea what to do. After kinda completing WSQ14, the first part of the quiz was easy (assuming what I did on WSQ14 was correct.)

For the second part of the quiz, I did some research and found this webpage, this oneand this other one that had useful information.

Here are my programs: Euler’s Number, Banana.

]]>

I tried Quiz 11 before doing WSQ14 and I had no idea what to do. After kinda completing WSQ14, the first part of the quiz was easy (assuming what I did on WSQ14 was correct.)

For the second part of the quiz, I did some research and found this webpage, this oneand this other one that had useful information.

Here are my programs: Euler’s Number, Banana.

]]>
https://creativecommons.org/licenses/by/4.0/
Quiz11 https://kenscourses.com/tc101fall2015/2015/quiz11-14/ Sun, 22 Nov 2015 05:48:46 +0000 http://saldabal.wordpress.com/?p=127 Continue Reading →]]> For this quiz we had to make two programms. One that calculate the value o e with the given accuracy by the user and a program that search for the word banana in a text file.

I struggled with the file question since i dont know how to use properly the .split() very well but still i did my best effort.

Here is my code of the first question: https://github.com/sabaldaba/TC101/blob/master/Question1-quiz

And the second one: https://github.com/sabaldaba/TC101/blob/master/question2-quiz11

]]>
https://creativecommons.org/licenses/by/4.0/
#Quiz11 – #TC101 – A01631728 https://kenscourses.com/tc101fall2015/2015/quiz11-tc101-a01631728/ Sun, 22 Nov 2015 05:42:03 +0000 http://luisduarteitesm.wordpress.com/?p=74 ]]> It was a short time to do it, also there was a lot of projects and homeworks to do that I try to search it on internet and try to undertand it, this was a hard one.

GitHub code: https://github.com/luisduartepalacios/Quiz11

 

]]>
https://creativecommons.org/licenses/by/4.0/
Quiz 11 https://kenscourses.com/tc101fall2015/2015/quiz-11-19/ Sun, 22 Nov 2015 05:39:16 +0000 http://dragv.wordpress.com/?p=127 ]]> Barely made it but I made it! Just real quick. I had a pretty hard time with the first only because I hate sequences and just can’t get my head around them.  But after like 2 hours I finally did it.

Anyways, here’s the github link to my codes:

https://github.com/Dragv/Quiz11/tree/master

]]>
https://creativecommons.org/licenses/by/4.0/