Intro To Programming: Chapter 1 (What is a program?)
So you want to become a programmer, or just want to know what the hell a programmer thinks about...
Well, lets start off with what a program is. A program is a set of instructions that are performed by a computer that input from devices like the keyboard, mouse, storage medium, mic, etc... and output to the monitor, printer, speakers, network, storage medium, etc... whilst doing something in-between.
So then the question is what does a computer understand? The computer understands binary (1's & 0's) where sets of bits (a single 1 or 0) represent different commands. Because humans prefer more readable methods of writing their programs down, the assembly language was created which contains abbreviations to represent commands, such as PUSH, POP and MOV. These commands are very simplistic and don't do much meaning it can take hundreds of lines of code to do a simple math operation. Because of this, higher level languages were built that could group commands to perform common tasks and when you compiled your program, the compiler would do the dirty work of writing the assembly for you.
We will be talking about these higher level languages in the rest of the chapters. Stay Tuned