Which of the following keyword supports dynamic method resolution?
If the class name is X, what is the type of its “this” pointer (in a nonstatic, non-const member function)?
Which of the following is the most common way of implementing C++?
‘Prime area’ in context of file system is defined as
In a C language ‘3’ represents
Which of the following port is better suitable to support high speed graphics and other video input?
Which of the following operators below allow to define the member functions of a class outside the class?
Which of the following is not an optical storage medium?
What defines a general set of operations that will be applied to various types of data?
Which of the STL containers store the elements contiguously (in adjacent memory locations)?
If a member needs to have unique value for all the objects of that same class, declare the member as
C++ provides facility to specify that the compiler should match function calls with the correct definition at the run time. This process is called as
Which of the following relationship is known as inheritancerelationship?
Which of the following members do get inherited but become private members in child class
Which device in microprocessor stores the data to be processed?
Which of the following is not a magnetic storage medium?
Value of a in a = (b = 5, b + 5); is
To record and produce sound in a computer system you need
How many copies of a class static member are shared between objects of the class?
The output of this program is int main () { cout << "Hello World!" return 0; }
If class A is friend of class B and if class B is friend of class C, which of the following is true?
In a group of nested loops, which loop is executed the most number of times?
Which looping process is best used when the number of iterations is known?
There is nothing like a virtual constructor of a class.
Which of the following is/are advantages of cellular partitioned structure:
Which of the following is not a standard exception built in C++.
What’s wrong? for (int k = 2, k <=12, k++)
Which of the following is the most general exception handler that catches exception of ‘any type’?
The temporary output of a computer system is called
Which of the following below is /are a valid iterator type?
What is the suitable output device for CAE, CAD and CAM?
Under which of the following circumstances, synchronization takes place?
Which one of the following is not a fundamental data type in C++
What’s wrong? (x = 4 && y = 5) ? (a = 5) ; (b = 6);