C Programming MCQ Questions and Answers on Data Types and Storage Classes 2

Image

Learn C Data Types and Storage Classes with MCQ Questions and Answers. Find questions on types of Storage Classes like Life, Scope and the default value of variables. Easily attend exams after reading these Multiple Choice Questions.

Go through C Theory Notes on Data Types and Storage Classes before studying questions.



1) What is a C Storage Class.?
A) C Storage decides where to or which memory store the variable.
B) C Storage Class decides what is the default value of a variable.
C) C Storage Class decides what is the Scope and Life of a variable.
D) All the above.
Answer [=]
Answer[=]
2) Every C Variable must have.?
A) Type
B) Storage Class
C) Both Type and Storage Class
D) Either Type or Storage Class
Answer [=]
Answer[=]
3) Find a C Storage Class below.
A) static
B) auto
C) register & extern
D) All the above
Answer [=]
Answer[=]
4) What is the default C Storage Class for a variable.?
A) static
B) auto
C) register
D) extern
Answer [=]
Answer[=]
5) Choose a right answer.
A) auto variable is stored in 'Memory'. static variable is stored in 'Memory'. extern variable is stored in 'Memory'. register variable is stored in 'Memory'.
B) auto variable is stored in 'Memory'. static variable is stored in 'Memory'. extern variable is stored in 'Memory'. register variable is stored in 'Register'.
C) auto variable is stored in 'Register'. static variable is stored in 'Register'. extern variable is stored in 'Register'. register variable is stored in 'Memory'.
D) auto variable is stored in 'Register'. static variable is stored in 'Register'. extern variable is stored in 'Register'. register variable is stored in 'Register'.
Answer [=]
Answer[=]
6) A register variable is stored in a Register. Where does a Register Present in a Computer.?
A) RAM ( Random Access Memory )
B) ROM ( Read Only Memory )
C) CPU (Central Processing Unit )
D) DMA ( Direct Memory Access )
Answer [=]
Answer[=]
7) Variables of type auto, static and extern are all stored in .?
A) ROM
B) RAM
C) CPU
D) Compiler
Answer [=]
Answer[=]


 

8) Find a right answer.
A) Default value of auto variable = Garbage Value Default value of static = Garbage Value Default value of extern = Garbage Value Default value of register = Garbage Value
B) Default value of auto variable = zero Default value of static = zero Default value of extern = zero Default value of register = zero
C) Default value of auto variable = Garbage Default value of static = zero Default value of extern = zero Default value of register = Garbage
D) Default value of auto variable = zero Default value of static = Garbage Default value of extern = Garbage Default value of register = zero
Answer [=]
Answer[=]
9) Find a correct statement.
A) Scope of auto variable = local to block or function Scope of register variable = local to block or function Scope of static variable = local to block or function Scope of extern variable = global or available to all functions and blocks
B) Scope of auto variable = global or available to all functions and blocks Scope of register variable = global or available to all functions and blocks Scope of static variable = global or available to all functions and blocks Scope of extern variable = local to block or function
C) Scope of auto variable = global or available to all functions and blocks Scope of register variable =  local to block or function Scope of static variable = global or available to all functions and blocks Scope of extern variable = local to block or function
D) Scope of auto variable = local to block or function Scope of register variable = global or available to all functions and blocks Scope of static variable = local to block or function Scope of extern variable = global or available to all functions and blocks
Answer [=]
Answer[=]
10) Choose a correct statement.
A) Life of an auto variable = persists between function calls Life of an register variable = with in the block or function Life of an static variable = persists between function calls Life of an extern variable = until program ends
B) Life of an auto variable = persists between function calls Life of an register variable = until program ends Life of an static variable = persists between function calls Life of an extern variable = with in the block or function
C) Life of an auto variable = until program ends Life of an register variable = until program ends Life of an static variable = until program ends Life of an extern variable = until program ends
D) Life of an auto variable = with in the block or function Life of an register variable = with in the block or function Life of an static variable = persists between function calls Life of an extern variable = until program ends
Answer [=]
Answer[=]
11) Which among the following is a Local Variable.?
A) register
B) auto
C) static
D) extern
Answer [=]
Answer[=]
12) Which among the following is a Global Variable.?
A) auto
B) register
C) static 
D) extern
Answer [=]
Answer[=]
13) Choose a correct statement about static variable.
A) A static global variable can be accessed in other files.
B) A static global variable can be used only in a file in which it is declared.
C) A static global variable can not be declared without extern keyword.
D) Default value of a static variable is -1.
Answer [=]
Answer[=]
14)
register float a = 3.14f;
Choose right statement.
A) Variable a is stored in CPU registers for fast access.
B) Variable a is converted to int and then stored in a CPU register.
C) register Storage Class is ignored and treated as
auto float a = 3.14f;
D) You get a compiler error as you can not store non integer value in a CPU register.
Answer [=]
Answer[=]


 

15) What is the difference between Declaration and Definition.?
A) Declaration does allocate memory for a variable. Definition does allocate memory for a variable.
B) Declaration does allocate memory for a variable. Definition does not allocate memory for a variable.
C) Declaration does not allocate memory for a variable. Definition does allocate memory for a variable.
D) Declaration does not allocate memory for a variable. Definition does not allocate memory for a variable.
Answer [=]
Answer[=]
16) Choose a right statement.
A) A non static global variable can not be used in included files.
B) A non static global variable can be used or referred to inside included files.
C) A non static global variable does not live till the end of program execution.
D) None of the above
Answer [=]
Answer[=]
17) Choose a right statement.
A) Redeclaration of a variable is Ok.
B) Redefinition of a variable is not Ok.
C) Definition of a variable uses memory blocks.
D) All the above.
Answer [=]
Answer[=]
18) Choose a correct statement.
A) Register variables are usually fast retrieving variables.
B) Static variables are usually maintain their values between function calls.
C) Auto variables release their memory after the block or function where they are declared.
D) All the above.
Answer [=]
Answer[=]
19) Choose a right statement.
A) Variables of type auto are stored in Stack memory.
B) Variable of type Static are stored in Segmented Memory.
C) Variables of type register are stored in Micro Processor Memory.
D) All the above.
Answer [=]
Answer[=]
20) Choose a right statement.
A) Variables of type auto are initialized fresh for each block or function call.
B) Variables of type static are initialized only first time the block or function is called.
C) Variables of type register are initialized each time the block or function is executed.
D) All the above.
Answer [=]
Answer[=]


Like or Share

Show some care. Like or Subscribe. [FB]...[Youtube]

C MCQ App by ExamTray 

Android APP

Java MCQ App by ExamTray 

Android APP
ALL MCQ App by ExamTray Android APP

Ad

 

Some good C Books

Book Price
1. C: The Complete Reference  Check Price
2. Let Us C Check Price
3. Programming in ANSI C Check Price
4. The C Programming Language Check Price

We may get some affiliate commission for the above purchases.