In if-elif-else statement, the control flows from bottom to top.
Answer:
In an if-elif-else statement, the control flows from top to bottom.
Only if the first condition is false, the control goes over to the next condition and so on and so forth. Hence, the flow of control is from top to bottom.
So, the given statement is false.