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
‘#mastery11’ Articles at TC101 Fall 2015, Page 5
Introduction to Programming Python and C++

Tag Archives: #mastery11

Masteries 11 and 12: Calling C++ functions and creating C++ functions

Hi 😀 ok this mastery is really simple… is how to create a function and how to call those functions in C++. First we need to know what is a function.. and this a series of actions that we save under a name to later use it with out having to put all the actions,… More Masteries 11 and 12: Calling C++ functions and creating C++ functions

MASTERIES #11 & #12: Creating and calling Functions

Hey there again, welcome to the merge of Mastery #11 and Mastery #12. In this post, I’m going to show you how to create and call a function. Fist of all, let me tell you that a function is “A named sequence of statements that performs some useful function. Functions may or may not take parameters, and […]

MASTERIES #11 & #12: Calling and creating Functions

(The credit of the background images goes to https://flic.kr/p/aCdfY2 and https://flic.kr/p/bk27BD ) Hey there again, welcome to the merge of Mastery #11 and Mastery #12. In this post, I’m going to show you how to create and call a function. Fist of all, let me tell you that a function is “A named sequence of statements that performs some […]

Masteries 11, 12 and 13

Wow, i lazied out in this one, but hey, i DO teach you how to do the stuff, even if it’s in a really simple way.

Masteries 11, 12 and 13

Wow, i lazied out in this one, but hey, i DO teach you how to do the stuff, even if it’s in a really simple way.

Making life easier: Functions masteries 11, 12

Functions are easy ones, you just have to put the name of it, and the parameters, lets say.. the sum of three numbers def sumas (w,x,y,z):      suma = w+x+y+z      print (sumas) The w,x,y,z are the parameters, basicaly, when you call that … Continúa leyendo Making life easier: Functions masteries 11, 12

Making life easier: Functions masteries 11, 12

Functions are easy ones, you just have to put the name of it, and the parameters, lets say.. the sum of three numbers def sumas (w,x,y,z):      suma = w+x+y+z      print (sumas) The w,x,y,z are the parameters,… Continue Reading →

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).