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…
Programming can create complex programs, games, websites, etc, but where do you begin? Luckily once you learn the fundamentals, you can go to any language and pick up the syntax. The fundamentals are the most important part of coding, with them you can look at a language you’ve never used before and try and decode what the code does. This is in no way supposed to teach you everything about programming. It’s just a general knowledge so when you do program you will understand what you are doing a little bit better. Here you will find a bunch of pseudocode, but if you use this in conjunction with my other tutorials, it can help you understand it better. |
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…