Nested function calls are made in
A First in First out
B: Last in First out
C: Parallel
D:pseudo Parallel
Answers
Answered by
5
Answer:
parallel
Explanation:
nested function calls are made in parallel
Answered by
0
The correct answer is OPTION B: Last in First out
- Nested functions are functions that are nested within other functions.
- One or more inner functions can exist within a function.
- The scope of outer functions includes these nested functions. In Nested Functions, the Parent function is the outer function, while the Child function is the inner function.
- The Parent function's variables and arguments are accessible to the Child function.
- The Parent function, on the other hand, is unable to access variables in child functions.
Similar questions