Statement scanf(“%d”,80);
The output of this program is int main () { cout << "Hello World!" return 0; }
A cluster of red, green and blue diodes is driven together to form a full-color pixel in a
Which of the following correctly describes the meaning of‘namespace’ feature in C++?
Which of the following is/are advantages of cellular partitioned structure:
Which of the following printer produces most noise?
The storage capacity of a floppy disk is measured in
If a member needs to have unique value for all the objects of that same class, declare the member as
‘Prime area’ in context of file system is defined as
Which of the following correctly describes C++ language?
A continue statement causes execution to skip to
What’s wrong? while( (i < 10) && (i > 24))
Originally ‘C’ was developed as:
Which of the following is a valid destructor of the class name “Country”
If class A is friend of class B and if class B is friend of class C, which of the following is true?
To record and produce sound in a computer system you need
A standard CD ROM can hold data up to
Inline functions are invoked at the time of
Which classes allow primitive types to be accessed as objects?
Which of the following keyword supports dynamic method resolution?
How many copies of a class static member are shared between objects of the class?
What is the Difference between struct and class in terms of Access Modifier?
The output of this program is int a = 10;void main(){int a = 20;cout << a << ::a;}
Which of the following operator cannot be overloaded?
Which of the following is not a file operation:
Which of the following is true about const member functions?
Which of the following operators can be overloaded?
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?
A disk is divided into several concentric circles called
Which of the following is not a valid conditional inclusions in preprocessor directives
Which of the following functions below can be used Allocate space for array in memory?
Which looping process is best used when the number of iterations is known?
Which one of the following is not a fundamental data type in C++
The two types of file structure existing in VSAM file are
Which of the following is not recommended in a header file?
The return value of the following code is Class1& test(Class1 obj){Class1 *ptr = new Class1();.........return ptr;}
What’s wrong? for (int k = 2, k <=12, k++)