Which of the following correctly describes the meaning of‘namespace’ feature in C++?
Which of the following operator cannot be overloaded?
The temporary output of a computer system is called
IBM introduced the first 8” floppy disk in 1971 which could store
Originally ‘C’ was developed as:
A disk is divided into several concentric circles called
Which of the following functions below can be used Allocate space for array in memory?
Which of the STL containers store the elements contiguously (in adjacent memory locations)?
Inline functions are invoked at the time of
Value of a in a = (b = 5, b + 5); is
Each pass through a loop is called a/an
What is the implicit pointer that is passed as the first argument for nonstatic member functions?
Which of the following is not a magnetic storage medium?
If a member needs to have unique value for all the objects of that same class, declare the member as
Which of the following is not a file operation:
Which looping process checks the test condition at the end of the loop?
A standard CD ROM can hold data up to
Which of the following members do get inherited but become private members in child class
In a group of nested loops, which loop is executed the most number of times?
The time taken to move an access arm to a certain track on a disk is
Which of the following is true about const member functions?
Which of the following is not a standard exception built in C++.
Which of the following operators can be overloaded?
What’s wrong? (x = 4 && y = 5) ? (a = 5) ; (b = 6);
Which of the following port is used to connect DB-25 pin modems or scanners?
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);
Which of the following correctly describes C++ language?
*ptr++ is equivalenet to:
Which of the following is not a valid conditional inclusions in preprocessor directives
The conditional compilation
Which of the following is not a component of file system
The return value of the following code is Class1& test(Class1 obj){Class1 *ptr = new Class1();.........return ptr;}
Which of the following is/are advantages of cellular partitioned structure:
A kind of memory chip that stores data and instructions permanently is
Which of the following term do not refer to an expansion card?
Which classes allow primitive types to be accessed as objects?
Statement scanf(“%d”,80);
Which of the following relationship is known as inheritancerelationship?