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
‘WSQ10’ Articles at TC101 Fall 2015 https://kenscourses.com/tc101fall2015 Introduction to Programming Python and C++ Thu, 26 Nov 2015 05:16:49 +0000 en hourly 1 https://creativecommons.org/licenses/by/4.0/ This image is similar to an array. It groups things. (I am… https://kenscourses.com/tc101fall2015/2015/this-image-is-similar-to-an-array-it-groups-things-i-am/ Thu, 26 Nov 2015 05:16:49 +0000 http://bsolisale.tumblr.com/post/133976160110

This image is similar to an array. It groups things. (I am tired, sorry). Here is WSQ 10

https://github.com/bsolisale/WSQQ/blob/master/WSQ10

]]>
https://creativecommons.org/licenses/by/4.0/
WSQ10: Lists https://kenscourses.com/tc101fall2015/2015/wsq10-lists-23/ Tue, 24 Nov 2015 23:43:56 +0000 http://ivancortes96.wordpress.com/?p=72 ]]> It cost me a little bit of trouble.

Here is the link to my code: https://github.com/cortesivan96/WSQs/blob/master/List%20(WSQ10)

 

]]>
https://creativecommons.org/licenses/by/4.0/
WSQ10 https://kenscourses.com/tc101fall2015/2015/wsq10-41/ Tue, 17 Nov 2015 20:17:34 +0000 http://estebanpg.wordpress.com/?p=37 https://github.com/estebanpinal/WSQ/blob/master/WSQ10

para este WSQ recomiendo accerder a lynda y ver el tutorial de arrys.

]]>
https://creativecommons.org/licenses/by/4.0/
#WSQ10 https://kenscourses.com/tc101fall2015/2015/wsq10-38/ Thu, 05 Nov 2015 22:43:34 +0000 http://tonygarciavz.wordpress.com/?p=61 Continue reading

]]>
I made this WSQ using arrays, that was pretty easy because I asked for a definited number of values (10). I had some problems remembering how yo get the stardard deviation but I searched and found a lot of help in this page: http://www.disfrutalasmatematicas.com/datos/desviacion-estandar.html

Here is a image of the program executed: WSQ10

Code on GitHub:

https://github.com/tonygarciavz/A01630861-TC1017/blob/master/WSQ10

]]>
https://creativecommons.org/licenses/by/4.0/
#WSQ10 – HOMEWORK – A01631728 https://kenscourses.com/tc101fall2015/2015/wsq10-homework-a01631728/ Thu, 05 Nov 2015 18:04:33 +0000 http://luisduarteitesm.wordpress.com/?p=52 ]]> I did’nt summit this at time, sorry about that 🙁

WSQ10

Github code: https://github.com/luisduartepalacios/WSQ10/blob/master/WSQ10.cpp

]]>
https://creativecommons.org/licenses/by/4.0/
WSQ10 https://kenscourses.com/tc101fall2015/2015/wsq10-37/ Sat, 31 Oct 2015 21:03:23 +0000 http://alansprogramming.wordpress.com/?p=127 Continue reading WSQ10 ]]> So many items, we might forget something…

WSQ10

vector <string> shopping_list “Shopping list” by Ex-Smith. Link: https://www.flickr.com/photos/ex-smith/3797903995/

Using lists with arrays and vectors is quite easy, but here we need to combine that knowledge with our knowledge of functions and mathematics… oh and C++. Almost missed that one. Doing it with arrays was easy, so I wanted to do it with vectors and asked for help from Montse Bernal, whose code structure I used to make the program work. It was very useful to use the numeric and cmath libraries for this WSQ.

Without further ado, here’s the link for WSQ 10.

]]>
https://creativecommons.org/licenses/by/4.0/
WSQ10 https://kenscourses.com/tc101fall2015/2015/wsq10-36/ Fri, 30 Oct 2015 18:55:11 +0000 http://ilkapython.wordpress.com/?p=111 WSQ10

]]>
https://creativecommons.org/licenses/by/4.0/
WSQ10 – Lists https://kenscourses.com/tc101fall2015/2015/wsq10-lists-21/ Thu, 29 Oct 2015 02:21:29 +0000 http://andreandradec.wordpress.com/?p=189 Continue Reading →]]> This was hard at the beginning but then I understand everything, it is just something that you need to practice, I used vectors in this one.

This video (https://www.youtube.com/watch?v=SGyutdso6_c) helped me a lot to understand about vectors.

Here is my code: https://github.com/Andreandc/TC1017/blob/master/WSQ10

57775484

]]>
https://creativecommons.org/licenses/by/4.0/
#WSQ10 https://kenscourses.com/tc101fall2015/2015/wsq10-33/ Thu, 29 Oct 2015 01:53:31 +0000 http://giorgio6859.wordpress.com/?p=67 ]]> Lighthouse

//WSQ10 List

#include <iostream>
using namespace std;
int main(){
cout<<“¿Cuantos valores quieres en la lista?”<<endl;
int TAM;
cin>>TAM;
cout<<“Dame “<< TAM <<“valores “<<endl;
float lista[TAM];
int i;
int x;
float d=0;
float s=0;
for (i=0; i<TAM; i++){
cin>> lista[i];
s=s+lista[i];
}
cout<<“El total es “<<s<<endl;
float p =s/TAM;
cout << “El promedio es “<<p<<endl;
for (x=0;x<TAM;x++){
d=d+(lista[x]-p)*(lista[x]-p);
}
cout<<“La desviación estandard es “<<d/TAM<<endl;
return 0;}

]]>
https://creativecommons.org/licenses/by/4.0/
WSQ10 – Lists https://kenscourses.com/tc101fall2015/2015/wsq10-lists-19/ Thu, 29 Oct 2015 01:36:34 +0000 http://dragv.wordpress.com/?p=120 ]]> First time using lists. Here’s the code:

qs10c

And here’s the test of the code:

qs10t

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