If there is more than one statement in the block of a for loop, which of the following must be placed at the beginning and the ending of the loop block?
Statement scanf(“%d”,80);
In a group of nested loops, which loop is executed the most number of times?
Which of the following port is used to connect DB-25 pin modems or scanners?
Which of the following is not a standard exception built in C++.
What is the suitable output device for CAE, CAD and CAM?
A disk is divided into several concentric circles called
A kind of memory chip that stores data and instructions permanently is
Which of the following correctly describes C++ language?
What defines a general set of operations that will be applied to various types of data?
Which of the following keyword supports dynamic method resolution?
Observe following program and answer class Example{public: int a,b,c; Example(){a=b=c=1;} //Constructor 1, Example(int a){a = a; b = c = 1;} //Constructor 2, Example(int a,int b){a = a; b = b; c = 1;} //Constructor 3, Example(int a,int b,int c){ a = a; b = b; c = c;} //Constructor 4}In the above example of constructor overloading, the following statement will call which constructor Example obj = new Example (1,2,3);
A continue statement causes execution to skip to
Which of the following printer produces most noise?
Which of the following is true about const member functions?
Which of the following members do get inherited but become private members in child class
The return value of the following code is Class1& test(Class1 obj){Class1 *ptr = new Class1();.........return ptr;}
What’s wrong? for (int k = 2, k <=12, k++)
‘Prime area’ in context of file system is defined as
Which looping process checks the test condition at the end of the loop?
Which of the following is the most general exception handler that catches exception of ‘any type’?
Which of the following is not a component of file system
Which of the following operator cannot be overloaded?
The conditional compilation
The output of this program is int main () { cout << "Hello World!" return 0; }
Originally ‘C’ was developed as:
A cluster of red, green and blue diodes is driven together to form a full-color pixel in a
How many copies of a class static member are shared between objects of the class?
Which of the following is the most common way of implementing C++?
Which of the following is/are advantages of cellular partitioned structure:
If class A is friend of class B and if class B is friend of class C, which of the following is true?
What’s wrong? (x = 4 && y = 5) ? (a = 5) ; (b = 6);
There is nothing like a virtual constructor of a class.
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 term do not refer to an expansion card?
Which of the following is a valid destructor of the class name “Country”
In mulit-list organization
Which classes allow primitive types to be accessed as objects?
Which of the following is not true about preprocessor directives