Home »
MCQs »
OOPs MCQs
What are auto variables?
53. What are auto variables?
- Auto variables are the variables that are visible to all the modules of a program
- Auto variables are the variables that speed up the allocation of the CPU
- Auto variables are the variables that are defined inside a function
- Auto variables are the variables whose scope is limited
Answer: A) Auto variables are the variables that are visible to all the modules of a program
Explanation:
Auto variables are the variables that are visible to all the modules of a program. All the variables are defined as auto variables by default.