Which of the following functions below can be used Allocate space for array in memory?
Which of the following keyword supports dynamic method resolution?
Which looping process is best used when the number of iterations is known?
Which of the following is the most general exception handler that catches exception of ‘any type’?
Which one of the following is not a fundamental data type in C++
Value of a in a = (b = 5, b + 5); is
Statement scanf(“%d”,80);
The output of this program is int main () { cout << "Hello World!" return 0; }
Which of the STL containers store the elements contiguously (in adjacent memory locations)?
Which of the following is not an optical storage medium?
In mulit-list organization
A cluster of red, green and blue diodes is driven together to form a full-color pixel in a
Which of the following operator cannot be overloaded?
The output of this program is int a = 10;void main(){int a = 20;cout << a << ::a;}
Which of the following ROM is most convenient to rewrite?
What defines a general set of operations that will be applied to various types of data?
Which of the following is not a valid conditional inclusions in preprocessor directives
The two types of file structure existing in VSAM file are
Which of the following is not a component of file system
Which looping process checks the test condition at the end of the loop?
Which one of the following is not a valid reserved keyword in C++
Originally ‘C’ was developed as:
Which of the following is the most common way of implementing C++?
The time taken to move an access arm to a certain track on a disk is
Which of the following term do not refer to an expansion card?
‘Prime area’ in context of file system is defined as
There is nothing like a virtual constructor of a class.
A standard CD ROM can hold data up to
*ptr++ is equivalenet to:
If a member needs to have unique value for all the objects of that same class, declare the member as
In a C language ‘3’ represents
What’s wrong? while( (i < 10) && (i > 24))
Which of the following port is better suitable to support high speed graphics and other video input?
Which of the following is the most preferred way of throwing and handling exceptions?
Which of the following correctly describes the meaning of‘namespace’ feature in C++?
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/are advantages of cellular partitioned structure:
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);