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

Tag Archives: Tutorials and Advices

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 →

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 →

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 →

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 →

Babylonian Method for Square root

Hello there, welcome again! In this WSQ #13 we had to write a program which do the following: “The function should receive a number and return floating point number. Obviously you should test your function, so create a main program… Continue Reading →

PROJECT ADVANCE! STAGE 2 AND 3.

For stage 2 and 3 of the final project I got into the research of how to make the program using the library in Ubuntu and well, it was quite easy, now the challenge will be to start writing the… Continue Reading →

Euclids Algorithm

In this WSQ I had to write a code in which I could use the already known Euclids Algorithm to find the Greatest Common Divisior of two numbers that will be asked to the user. Euclids Algorithm: The Euclidean algorithm… 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).