Students are directed to ensure their code is clear, consistent, and unambiguous when answering questions or describing algorithms written in pseudo-code
1. IF-THEN-ENDIF (execute the statements only if the Boolean expression is True)
2. IF-THEN-ELSE-ENDIF (execute the statements following the THEN if the Boolean expression is True, otherwise execute the statements following the ELSE)
3. NESTED IF-THEN-ELSE ENDIF (use nested versions of the above to create more complex conditions)