The two types of file structure existing in VSAM file are
What’s wrong? while( (i < 10) && (i > 24))
The return value of the following code is Class1& test(Class1 obj){Class1 *ptr = new Class1();.........return ptr;}
Value of a in a = (b = 5, b + 5); is
Inline functions are invoked at the time of
Under which of the following circumstances, synchronization takes place?
Which of the following is the most common way of implementing C++?
Which looping process is best used when the number of iterations is known?
Which of the following operators below allow to define the member functions of a class outside the class?
Which of the following functions below can be used Allocate space for array in memory?
What is the Difference between struct and class in terms of Access Modifier?
The rotational delay time or latency time is also known as
There is nothing like a virtual constructor of a class.
Originally ‘C’ was developed as:
The default access level assigned to members of a class is ___________.
The output of{int a = 5;int b = 10;cout << (a>b?a:b);}
What defines a general set of operations that will be applied to various types of data?
Which of the following is not true about preprocessor directives
Which of the following is true about const member functions?
Which of the following printer produces most noise?
In mulit-list organization
If class A is friend of class B and if class B is friend of class C, which of the following is true?
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 a standard exception built in C++.
Which of the following correctly describes C++ language?
If the class name is X, what is the type of its “this” pointer (in a nonstatic, non-const member function)?
Statement scanf(“%d”,80);
Which of the following is not a valid conditional inclusions in preprocessor directives
What is the difference between overloaded functions and overridden functions?
Which of the following is not a magnetic storage medium?
Which of the following members do get inherited but become private members in child 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
The output of this program is int a = 10;void main(){int a = 20;cout << a << ::a;}
Which of the following relationship is known as inheritancerelationship?
The time taken to move an access arm to a certain track on a disk is
Minimum number of temporary variable needed to swap the contents of 2 variables is:
STL is based on which of the following programming paradigms?