[Type A] Working with Functions – Chapter 3 Sumita Arora
Table of Contents
3. What do you understand by the flow of execution?
Solution: Flow of execution is:
- The sequence in which statements in a program are executed.
- Typically follows a top-to-bottom approach unless directed otherwise by control flow statements like loops and conditionals.
In short, the flow of execution refers to the sequential execution of statements in a program, typically from top to bottom, unless altered by control flow statements.