Please enable JavaScript.
Coggle requires JavaScript to display documents.
Programming Constructs - Coggle Diagram
Programming Constructs
Sequence
-
The sequence of a program is extremely important as carrying out instructions in the wrong order leads to a program performing incorrectly.
Selection
The process of making a decision - the result of the decision decides which path the program will take next.
Iteration
-
-
When a program needs to repeat certain steps until told otherwise, or until a condition has been met.
-
-
Enables programmers to greatly simplify a program - instead of writing out the same lines of code again and again, a programmer can write a section of code once, and ask the program to execute it again and again until no longer needed.
-