Home

C Programming MCQ Question with Answer

C Programming MCQ with detailed explanation for interview, entrance and competitive exams. Explanation are given for understanding.

Download C Programming MCQ Question Answer PDF

Question No : 36
What is the difference between overloaded functions and overridden functions?

Overloading is a dynamic or run-time binding and Overriding is static or compile-time binding
Redefining a function in a friend class is called function overriding while Redefining a function in a derived class is called a overloaded fucntion.
Overloading is a static or compile-time binding and Overriding is dynamic or run-time binding
Redefining a function in a friend class is called function overloading while Redefining a function in a derived class is called as overridden fucnion.

Question No : 37
Which one of the following is not a valid reserved keyword in C++

Explicit
Public
Implicit
Private

Question No : 38
Each pass through a loop is called a/an

enumeration
iteration
culmination
pass through

Question No : 39
No commas or blanks are allowed within an integer or a real constant.

True
False

Question No : 40
void' is a datatype.

True
False

Question No : 41
emp name' is a valid variable name.

True
False

Question No : 42
unsigned' is a valid variable name.

True
False