When is std::bad_alloc exception thrown?
If the class name is X, what is the type of its “this” pointer (in a nonstatic, non-const member function)?
A standard CD ROM can hold data up to
Statement scanf(“%d”,80);
Which of the following below is /are a valid iterator type?
What is the difference between overloaded functions and overridden functions?
Which of the following is not a magnetic storage medium?
IBM introduced the first 8” floppy disk in 1971 which could store
The output of{int a = 5;int b = 10;cout << (a>b?a:b);}
Which of the following is not a standard exception built in C++.
Which of the following term do not refer to an expansion card?
A disk is divided into several concentric circles called
Which of the following keyword supports dynamic method resolution?
Which of the STL containers store the elements contiguously (in adjacent memory locations)?
The storage capacity of a floppy disk is measured in
Which of the following is a valid destructor of the class name “Country”
Which of the following operator cannot be overloaded?
Which of the following operators below allow to define the member functions of a class outside the class?
Which one of the following is not a fundamental data type in C++
Inline functions are invoked at the time of
Which of the following port is used to connect DB-25 pin modems or scanners?
The output of this program is int main () { cout << "Hello World!" return 0; }
Each pass through a loop is called a/an
Which of the following is/are advantages of cellular partitioned structure:
The time taken to move an access arm to a certain track on a disk is
If a member needs to have unique value for all the objects of that same class, declare the member as
How many copies of a class static member are shared between objects of the class?
Value of a in a = (b = 5, b + 5); is
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 operators can be overloaded?
What’s wrong? (x = 4 && y = 5) ? (a = 5) ; (b = 6);
Originally ‘C’ was developed as:
A continue statement causes execution to skip to
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’?
Minimum number of temporary variable needed to swap the contents of 2 variables is:
Under which of the following circumstances, synchronization takes place?