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
giorgiodc’s Articles at TC101 Fall 2015
Introduction to Programming Python and C++

Author Archives: giorgiodc

Bonus Quiz

Aquí está el link para mi video con mis impresiones del curso. ¡Muchas gracias por todo Ken!

WSQ14

Este WSQ está más difícil de lo que parece. Tuve que apoyarme mucho en Ken para hacerlo. Ya lo había hecho para un quiz pero me había equivocado porque entendí mal la forma en la que se daba la precisión. Ken me ayudó a entenderlo y pues aquí está el código que hice. //WSQ14 Euler […]

WSQ13

Para este WSQ vi un video en youtube sobre el método babilónico. Logré deducir casi todo con mi propia lógica pero en un momento llegué a atascarme. Por suerte estaba haciéndola durante mi clase de programación y Ken me dio un empujoncito que me ayudó a ingeniármelas. Aquí está el código. //Babylonian Method #include <iostream> […]

WSQ12

Para este WSQ sólo vi un video en youtube sobre el algoritmo de Euclid y lo demás lo deduje por lógica. Aquí está el código. El operador % ayudó bastante para simplificar la función. //WSQ12 #include <iostream> using namespace std; int gcd (int x, int y){ int yy; int xx; int z=1; while(z!=0){ xx=x; yy=y; […]

WSQ15

For this blog I was supposed to have 4 weeks left but I´ve seen it with just one thay left so my plan is to finish today all the WSQ and finish tomorrow the masteries. 🙂

Quiz 11

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; […]

Bonus Quiz

Final Proyect week 1

This week we only saw some tutorial videos to get involved with what the proyect will be about.
Here are the links of the tutorials.

#Masteries23,24,25

Creation and use of vectors in C++
Creation and use of arrays in C++
Creation and use of strings in C++

#Mastery22

When to use what type of repetition in a program

What should you work on?

Week #12 and more partial exams for you.

For this week's readings:
C++ (TC1017) should either be looking at support for your project, ImageMagick C++ libraries are a good start.
Python (TC1014) should be finishing chapter 11 (Dictionaries).