InterviewSolution
Saved Bookmarks
| 1. |
Which control structure will execute an instruction only after the computer evaluates conditions to determine if a certain condition exists? |
| Answer» SELECTION control structureExplanation:There are 3 types of control structures1) sequential- normal flow2) selection- used for decision making and execute if certain CONDITIONS are true EX. if, ifelse, switch3) REPETITION- used for looping ex. for, while, dowhile | |