1. Decisions to be made by a computer are formed as a question which will determine whether a
given condition is true or false.
A. True
B. False
===========================
2. The statements under if and else clauses should be indented for readability and clarity
although indentation is not required by the compiler.
A. True
B. False
=========================
3. If there is an && and an || in a compound condition, the || is evaluated before the &&.
A. True
B. False
================