Please enable JavaScript.
Coggle requires JavaScript to display documents.
Unit 2a - Programming Basics 2) Sequence and Selection (Boolean…
Unit 2a - Programming Basics
2) Sequence and Selection
Sequence
The order statements are executed in
Selection
Decides whether or not a part of the code is executed based on an
IF
statement
Boolean Expressions
(used to decide
IF
statements)
equal to
=
not equal to
≠
greater than
>
less than
<
less than or equal to
≤
greater than or equal to
≥
When an
IF
statement has multiple outcomes, you may use an
IF...ELSE
statement
An
IF
inside an
IF
is called a
Nested IF statment