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

Author Archives: fersabal

Basic types and their use in python

Knowing about types of variables is very important in programming. You have to know how to differenciate between ‘3’ and 3, because if you mix types you have to be very careful or an error migh occur. A simple way… Continue Reading →

Create accounts: Blog, Twitter, Github

Nowadays internet is full of social networks. They are very useful if they are used for good purposes. In order to get the full beneficts of social media we must create accounts on each of the web pages we want… Continue Reading →

How to use ELSE

I recently posted on how to use IF and ELIF loops. Well, this time im going to show you how to use “ELSE” which is kind of the family of IF and ELIF. When we use IF we evaluate a… Continue Reading →

How to use While and For loops

As I’ve posted before conditionals are very useful in python, it’s kind of the main idea of a computer to choose between do something or to don´t. So far we´ve seen If, Elif and else. But what happened when we… Continue Reading →

Sum of numbers

This task was about making a programm that asks the user for two integers. The user will read that the first number she/he types will be the begining of a serie of numbers and the second will be the end… Continue Reading →

Use of the conditionals “If” and “Elif”

There is something in math called Conditional expressions. They are expressión that can only be answered with YES or NOT. So the statements needed to declare one expression of this kind must be also special, they are called conditionals. So… Continue Reading →

How to output something and how to use comments

Output We can perform all sort of operations, is up to us to make our algorithms complex or simple. The computer will do whatever you tell it to do. But there will be a point were we will want the… Continue Reading →

Run IDE and command line of python

This post is about get used to the python environment. When you download python from the official webpage, which you can go by clicking in here, various types of files are downloaded. The main three we are interested in are:… Continue Reading →

QUIZ04

Temperature

For this task we had to create a programm that allows the user to enter a number, it could be floating-point, which represents a temperature measured in farenheit degrees. The the computer will “translate” that meausure to Celisius degrees. The way to do this is with a simple equation which is : C = (5 … Seguir leyendo Temperature

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