The time taken to move an access arm to a certain track on a disk is
In a C language ‘3’ represents
Which of the following operator cannot be overloaded?
What’s wrong? (x = 4 && y = 5) ? (a = 5) ; (b = 6);
What is the Difference between struct and class in terms of Access Modifier?
Which of the following is the most common way of implementing C++?
Which of the following is not a standard exception built in C++.
Which of the following keyword supports dynamic method resolution?
The rotational delay time or latency time is also known as
Under which of the following circumstances, synchronization takes place?
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
A kind of memory chip that stores data and instructions permanently is
A disk is divided into several concentric circles called
Which of the following ROM is most convenient to rewrite?
The two types of file structure existing in VSAM file are
A standard CD ROM can hold data up to
Which of the STL containers store the elements contiguously (in adjacent memory locations)?
Which of the following operators can be overloaded?
A continue statement causes execution to skip to
Which classes allow primitive types to be accessed as objects?
Which of the following port is used to connect DB-25 pin modems or scanners?
Which of the following is not a valid conditional inclusions in preprocessor directives
Which device in microprocessor stores the data to be processed?
The storage capacity of a floppy disk is measured in
Which of the following is not a component of file system
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 a valid destructor of the class name “Country”
Which one of the following is not a fundamental data type in C++
Which of the following is not true about preprocessor directives
To record and produce sound in a computer system you need
What is the implicit pointer that is passed as the first argument for nonstatic member functions?
Which looping process is best used when the number of iterations is known?
What is the difference between overloaded functions and overridden functions?
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?
Value of a in a = (b = 5, b + 5); is
When is std::bad_alloc exception thrown?