The storage capacity of a floppy disk is measured in
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?
Which of the following port is better suitable to support high speed graphics and other video input?
*ptr++ is equivalenet to:
Which of the following is not a component of file system
If the class name is X, what is the type of its “this” pointer (in a nonstatic, non-const member function)?
Which one of the following is not a valid reserved keyword in C++
A continue statement causes execution to skip to
Which of the following members do get inherited but become private members in child class
STL is based on which of the following programming paradigms?
Under which of the following circumstances, synchronization takes place?
Statement scanf(“%d”,80);
Which of the following is not a magnetic storage medium?
What defines a general set of operations that will be applied to various types of data?
If a member needs to have unique value for all the objects of that same class, declare the member as
The output of this program is int main () { cout << "Hello World!" return 0; }
How many copies of a class static member are shared between objects of the class?
Inline functions are invoked at the time of
Which of the following is not a standard exception built in C++.
What is the implicit pointer that is passed as the first argument for nonstatic member functions?
If class A is friend of class B and if class B is friend of class C, which of the following is true?
IBM introduced the first 8” floppy disk in 1971 which could store
What is the Difference between struct and class in terms of Access Modifier?
Which of the following functions below can be used Allocate space for array in memory?
Which of the following is not true about preprocessor directives
There is nothing like a virtual constructor of a class.
Originally ‘C’ was developed as:
When is std::bad_alloc exception thrown?
Which of the following is the most preferred way of throwing and handling exceptions?
Which of the following relationship is known as inheritancerelationship?
Minimum number of temporary variable needed to swap the contents of 2 variables is:
Which of the following is not a file operation:
Which looping process checks the test condition at the end of the loop?
In a group of nested loops, which loop is executed the most number of times?
The two types of file structure existing in VSAM file are
Which of the following is a valid destructor of the class name “Country”
What’s wrong? while( (i < 10) && (i > 24))