Learn the basics of programming!---Part3---
Hi everyone, We’ve already discussed what a variable is, so now let’s talk about control structures . What on earth is a control structure!? Wiki describes it as follows: A control structure is a block of programming that analyzes variables and chooses a direction in which to go based on given parameters . The term flow control details the direction the program takes (which way program control “flows”). Hence it is the basic decision-making process in computing ; flow control determines how a computer will respond when given certain conditions and parameters . H’okay, so, that definition is obviously a bunch of technical terms that no beginner to programming would understand. So let me try to describe it in more human terms. When a program is running, the code is being read by the computer line by line (from top to bottom , and for the most part left to right ), just like you would read a book. This is known as the “ code flow “, now...