1/4
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai |
|---|
No analytics yet
Send a link to your students to track their progress
What are the three basic programming constructs?
Sequence
Selection
Iteration
What are selection statements used for?
They are used to select which statement will be executed next, depending on some condition
Using what, are conditions formulated?
They are formulated using relational operators.
Provide three examples of relational operators.
> greater than
< less than
>= greater than or equal to
<= less than or equal to
= equal
<> not equal
What is the relational operator for not equal in pseudocode?
<>