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

Tag Archives: #Batman

Nesting of conditional IF statements.

In C++ the braces of and if or an else clause can contain another if statement. There are known as nested if statements. In simple terms a nested if is when you write an IF inside another IF braces. This… Continue Reading →

BONUS POINTS!

Well this is a video of myself talking about my experience in Flip learning and how to be succesful in the subject. I really had a great time with Ken as my teacher and his way of teaching is incredible!… Continue Reading →

Final Project!

We did it! My buddy and I finally acomplish our project for our TC101 class. Well, basically, our program had to do the following: “You will create a command-line program that uses two-dimensional arrays or matrices to process images. You… Continue Reading →

Creation and use of Strings in C++

In this mastery I will talk to you about a really simple topic, “Strings”. Well, first of all strings are a one-dimensional array of characters which is terminated by a null character ‘’. Thus a null-terminated string contains the characters that comprise the… Continue Reading →

Creation and use of Arrays

C++ provides a data structure, the array, which stores a fixed-size sequential collection of elements of the same type. An array is used to store a collection of data, but it is often more useful to think of an array as… 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 →

Scilab! The last one.

In this WSQ we had to download, install and use a new program called Scilab which is an IDE really usefull because it let you do mathematical operations really easy and also calculate graphics and write lines of code. I… Continue Reading →

Final Dash! (FINAL FINAL DASH)

So! In this post I will schedule all my remaining WSQ’S and Masteries and of course, the project. But, as you can notice, there is not much time left so I took the challenge of doing my remaining 3 WSQ’s… 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).