What is the difference between overloaded functions and overridden functions?
Which classes allow primitive types to be accessed as objects?
Which of the following is a valid destructor of the class name “Country”
Which of the following keyword supports dynamic method resolution?
If class A is friend of class B and if class B is friend of class C, which of the following is true?
Which of the following members do get inherited but become private members in child class
Each pass through a loop is called a/an
In mulit-list organization
The conditional compilation
Which of the following is/are advantages of cellular partitioned structure:
Value of a in a = (b = 5, b + 5); is
What defines a general set of operations that will be applied to various types of data?
A disk is divided into several concentric circles called
Inline functions are invoked at the time of
The output of this program is int main () { cout << "Hello World!" return 0; }
The two types of file structure existing in VSAM file are
Which device in microprocessor stores the data to be processed?
Which of the following is the most general exception handler that catches exception of ‘any type’?
Which of the following printer produces most noise?
There is nothing like a virtual constructor of a class.
A standard CD ROM can hold data up to
Which of the following is not a magnetic storage medium?
Which of the following correctly describes C++ language?
The storage capacity of a floppy disk is measured in
Which of the following operator cannot be overloaded?
To record and produce sound in a computer system you need
If a member needs to have unique value for all the objects of that same class, declare the member as
A continue statement causes execution to skip to
The temporary output of a computer system is called
How many copies of a class static member are shared between objects of the class?
‘Prime area’ in context of file system is defined as
What is the implicit pointer that is passed as the first argument for nonstatic member functions?
Which one of the following is not a valid reserved keyword in C++
STL is based on which of the following programming paradigms?
Which of the following below is /are a valid iterator type?
Which of the following is not a component of file system
The output of this program is int a = 10;void main(){int a = 20;cout << a << ::a;}
What’s wrong? (x = 4 && y = 5) ? (a = 5) ; (b = 6);