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
‘#Mastery24’ Articles at TC101 Fall 2015 https://kenscourses.com/tc101fall2015 Introduction to Programming Python and C++ Thu, 26 Nov 2015 06:48:10 +0000 en hourly 1 https://creativecommons.org/licenses/by/4.0/ #Masteries 23, 24 & 25 https://kenscourses.com/tc101fall2015/2015/masteries-23-24-25/ Thu, 26 Nov 2015 06:48:10 +0000 http://manuelgodm.wordpress.com/?p=205 ]]> And here my video: https://youtu.be/LNpxQAoDXpI

Here you can find more information about arrays: https://www.programarya.com/Cursos/C++/Estructuras-de-Datos/Arreglos-o-Vectores

You can find information about vectors here: http://www.cplusplus.com/reference/vector/vector/?kw=vector

You can find information about strings here: http://www.cplusplus.com/reference/string/string/?kw=string

(Tuve problemas para subir el video por que estaba muy muy lento el internet, por eso apenas lo postee, espero y pueda comprender ken)

]]>
https://creativecommons.org/licenses/by/4.0/
Masteries 24. and 25. https://kenscourses.com/tc101fall2015/2015/masteries-24-and-25-3/ Thu, 26 Nov 2015 05:02:49 +0000 http://alansprogramming.wordpress.com/?p=337 Continue reading Masteries 24. and 25. ]]> Mastery 25

Pianos are also arrays… kind of. “Piano strings” by Kevin Dooley. Link: https://www.flickr.com/photos/pagedooley/6399773133/

Description: Creation and use of arrays and strings in C++.

Wait, I didn’t know strings were arrays! Just kidding, we have to know all about arrays and strings if we want to make more complicated code, and it’s always useful to know that you can do one thing in more than one way.

That said, I leave you with the video explanation.

]]>
https://creativecommons.org/licenses/by/4.0/
Lists and Tuples Python 3 https://kenscourses.com/tc101fall2015/2015/lists-and-tuples-python-3/ Thu, 26 Nov 2015 00:05:37 +0000 http://asimplemaniseepythonipresslike.wordpress.com/?p=353 ]]> If you don’t know how to make a tuple or a list I recommend you to see my video to learn how to

Here’s my video 😀

]]>
https://creativecommons.org/licenses/by/4.0/
Here are masteries #24 and #26One is about arrays and the other… https://kenscourses.com/tc101fall2015/2015/here-are-masteries-24-and-26one-is-about-arrays-and-the-other/ Wed, 25 Nov 2015 22:59:56 +0000 http://bsolisale.tumblr.com/post/133956386015

Here are masteries #24 and #26

One is about arrays and the other one is about matrixes. Those topics were the hardest for me.

https://www.youtube.com/watch?v=OTyWA3_9oZ8

]]>
https://creativecommons.org/licenses/by/4.0/
Mastery 23 y 24 https://kenscourses.com/tc101fall2015/2015/mastery-23-y-24/ Wed, 25 Nov 2015 22:51:54 +0000 http://estebanpg.wordpress.com/?p=86

]]>
https://creativecommons.org/licenses/by/4.0/
Mastery 24 https://kenscourses.com/tc101fall2015/2015/mastery-24-8/ Wed, 25 Nov 2015 19:57:31 +0000 http://octavioirg.wordpress.com/?p=238 ]]> Mastery about c++ arrays!

An array is very cool way to store information and a cimple way.

An array is a series of elements of the same type placed in contiguous memory locations that can be individually referenced by adding an index to a unique identifier.

My video:

That means that, for example, five values of type int can be declared as an array without having to declare 5 different variables (each with its own identifier). Instead, using an array, the five int values are stored in contiguous memory locations, and all five can be accessed using the same identifier, with the proper index.

In simple words, an array is information stored in such a way that you can access each part of your information using a name and an index number.

 

]]>
https://creativecommons.org/licenses/by/4.0/
Creation and use of tuples in Pyth https://kenscourses.com/tc101fall2015/2015/creation-and-use-of-tuples-in-pyth/ Wed, 25 Nov 2015 19:27:07 +0000 http://juanmele.wordpress.com/?p=145 ]]> Here is Video in youtube for this Mastery and here is the link to youtube https://www.youtube.com/watch?v=U_4RNDWGlSw

]]>
https://creativecommons.org/licenses/by/4.0/
Mastery 24 https://kenscourses.com/tc101fall2015/2015/mastery-24-7/ Wed, 25 Nov 2015 17:21:41 +0000 http://choza973.wordpress.com/?p=180 ]]> Creation and use of tuples, here’s the video!

 

]]>
https://creativecommons.org/licenses/by/4.0/
Mastery 24 https://kenscourses.com/tc101fall2015/2015/mastery-24-5/ Wed, 25 Nov 2015 08:43:49 +0000 http://andreandradec.wordpress.com/?p=358

]]>
https://creativecommons.org/licenses/by/4.0/
Mastery 24 https://kenscourses.com/tc101fall2015/2015/mastery-24-6/ Wed, 25 Nov 2015 08:13:37 +0000 http://luisgarciadaniel01.wordpress.com/?p=215 Continue reading Mastery 24 ]]> Creation and use of arrays in C++

Different from vectors and strings, we don’t need to call a library, we only need to write our function “type array [n]” where n is the length of the array or the number of values that the array will be covering.

Screen Shot 2015-11-25 at 02.04.58This will create an array list, a series of elements with the same data type.

In this case, the user is asked to insert the number of values (10 values) to calculate the Average of them and the standard deviation. This is accomplished by an array and with the help of a for loop until the ten spaces of the array are covered.

Screen Shot 2015-11-25 at 02.09.33.png as you can see the for loop has a condition and until this conditions are completely covered, the loop will keep repeating over and over again.

 

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