The idea that program instructions execute in order (linearly) unless otherwise specified through a conditional statement is known as


The idea that program instructions execute in order (linearly) unless otherwise specified through a conditional statement is known as


a) boolean execution

b) conditional statements

c) try and catch

d) sequentiality

e) flow of control

Answer: e. Explanation: The “flow of control” describes the order of execution of instructions. It defaults to being linear (or sequential) but is altered by using control statements like conditionals and loops.