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

Tag Archives: masteries

Use of ‘elif’ and ‘else’ Python3

Mastery about how to use elif and else! watch it!

Create and call functions Python3

Hi this video will show you how to create and call functions inside Python3:
Hope enjoy! 🙂
 

Mastery 26

Creation and use of matrixes. A matrix is a simple array, but in this case the arrays has two dimensions. We had to use this concept to undestand how to perform the imagemagick challenge. For those of you that know spanish(haha just kidding…) there is a cool blog that explains this: https://ronnyml.wordpress.com/2009/07/04/vectores-matrices-y-punteros-en-c/

Mastery 24

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

Recursion for repetitive algorithms

Sometimes we will be coding a fucntion that need to be more than one time. So we will be facing a problem since mayve we would be able to solve our problem by making our algorithm longer but at the… Continue Reading →

Nesting conditionals

So far we’ve seen how to use loops, while and for loops. And we’ve learned that they are very useful in almost any program we want to do. But there will be a time when our programms become complex when… Continue Reading →

Visualization of Data with Tools

A simple and really cool tool and the one that we are going to learn to use is Scilab. What is Scilab ? Scilab is free and open source software for numerical computation providing a powerful computing environment for engineering and scientific… Continue Reading →

Creation and use of Vectors in C++

A vector is a container in the C++ Standard Library (a bunch of stuff which sort of comes “bundled” with C++) which is essentially just an array that can grow and shrink in size. These things have been highly optimized… Continue Reading →

Use of “Switch” as a Conditional.

The syntax of the switch statement is a bit peculiar. Its purpose is to check for a value among a number of possible constant expressions. It is something similar to concatenating if-else statements, but limited to constant expressions. Its most… Continue Reading →

How to install Ubuntu in Virtual Machine

Hi everyone I’m going to let here my video about how to install Ubuntu in Virtual Machine. Some important links: Oracle Virtual Machine – https://www.virtualbox.org/wiki/Downloads Ubuntu ISO Downlaod – http://www.ubuntu.com/download/desktop Here’s the video:

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