Lesson A8
Next: Structured...Lesson Overview: Any sort of complex program must have some ability to control flow. Without this control, programs become limited to one basic job each time the program is run. The most basic of these control structures is the if statement, followed by the if-else, and then the switch statement.
A systematic method for solving a problem.
A variable name of type boolean.
Using multiple single line statements within one structure block.
An alternate way of coding an if-else statement using three operands.
A way to control how many times sections of code are executed.
A two way selection structure.
A control structure where code is repeated until a certain condition is met.
Operators that determine if certain conditions are true or false.
A watered-down representation of actual code, written by programmers to design and visualize classes and programs.
Operators which compare two values.
The process of breaking a problem down into progressively smaller pieces.
A method of programming which follows rules about selection, sequence, and iteration control structures.