Which of the following is not a component of file system
Minimum number of temporary variable needed to swap the contents of 2 variables is:
Which of the following port is used to connect DB-25 pin modems or scanners?
The temporary output of a computer system is called
Originally ‘C’ was developed as:
The default access level assigned to members of a class is ___________.
In a group of nested loops, which loop is executed the most number of times?
Which of the following is not a file operation:
A continue statement causes execution to skip to
Which of the following is/are advantages of cellular partitioned structure:
Inline functions are invoked at the time of
The storage capacity of a floppy disk is measured in
Which of the following port is better suitable to support high speed graphics and other video input?
Which classes allow primitive types to be accessed as objects?
What’s wrong? for (int k = 2, k <=12, k++)
*ptr++ is equivalenet to:
Which of the following is not a standard exception built in C++.
Which of the following is not a magnetic storage medium?
When is std::bad_alloc exception thrown?
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 is the most common way of implementing C++?
Which of the following is true about const member functions?
What defines a general set of operations that will be applied to various types of data?
Which of the following operators can be overloaded?
Which of the following correctly describes C++ language?
Which of the following ROM is most convenient to rewrite?
Which of the following is not true about preprocessor directives
Which device in microprocessor stores the data to be processed?
Which one of the following is not a valid reserved keyword in C++
The conditional compilation
Which of the following operators below allow to define the member functions of a class outside the class?
The time taken to move an access arm to a certain track on a disk is
Which of the following printer produces most noise?
Which of the following is the most general exception handler that catches exception of ‘any type’?
Which of the following is not a valid conditional inclusions in preprocessor directives
A kind of memory chip that stores data and instructions permanently is
Which of the following members do get inherited but become private members in child class