basics

Flow Control Of A Computer program Process – Computer Basics study materials

The flow of control (or simply control flow) is how a program processes its instructions.Typically, programs operate in a linear or sequential flow of control. Executable statementsor instructions in a program are performed one after another. In source code, the order that instructions are written defines their order. Just like English, a program is “read” […]

basics

Syntax Rules & Pseudocode

Programming languages are a lot like human languages in that they have syntax rules.These rules dictate the appropriate arrangements of words, punctuation, and other symbols that form valid statements in the language. For example, in many programming languages, commands or statements are terminated by semicolons (just as most sentences are ended with a period). This […]