For most programming and scripting languages the concepts are all the same. The only thing that changes drastically is the syntax of the language. Some…
For most programming and scripting languages the concepts are all the same. The only thing that changes drastically is the syntax of the language. Some…
Algorithms An algorithm is a basic idea of a program before any code is actually written. There are a few ways in which this can…
Input/Output Every language has an input and an output command, or commands. You take input from the keyboard or from a file and you can…
DO LOOPS Up until this point if we wanted to print out a variable, or do a calculation we would need to write it over…
ARRAYS When doing variables in loops, sometimes we may want to use the same variable name over and over again. Say you wanted to have…
Modules Say we had a program that gave directions to 3 places, a video store, a bank, and the post office. Now say that the…
Objects Say we have a ball. A ball is an object. A ball has properties such as color, size, weight. You can have actions associated…