Which one of the following is not a valid reserved keyword in C++
The temporary output of a computer system is called
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 not recommended in a header file?
Which of the following port is used to connect DB-25 pin modems or scanners?
What is the difference between overloaded functions and overridden functions?
The two types of file structure existing in VSAM file are
Which one of the following is not a fundamental data type in C++
Which of the following operators can be overloaded?
The conditional compilation
Which of the following operator cannot be overloaded?
Which of the following is true about const member functions?
There is nothing like a virtual constructor of a class.
Inline functions are invoked at the time of
The rotational delay time or latency time is also known as
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 the most common way of implementing C++?
To record and produce sound in a computer system you need
Originally ‘C’ was developed as:
When is std::bad_alloc exception thrown?
Which of the following is/are advantages of cellular partitioned structure:
Each pass through a loop is called a/an
Which of the following is not an optical storage medium?
Which of the following relationship is known as inheritancerelationship?
What’s wrong? while( (i < 10) && (i > 24))
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?
STL is based on which of the following programming paradigms?
Which of the following keyword supports dynamic method resolution?
A continue statement causes execution to skip to
The output of this program is int a = 10;void main(){int a = 20;cout << a << ::a;}
If a member needs to have unique value for all the objects of that same class, declare the member as
Minimum number of temporary variable needed to swap the contents of 2 variables is:
Which of the following functions below can be used Allocate space for array in memory?
In mulit-list organization
Which of the following below is /are a valid iterator type?