Which of the following is a correct identifier in C++?
What are the formal parameters in C++?
Which function is used to read a single character from the console in C++?
Which function is used to write a single character to console in C++?
What are the escape sequences?
Which of the following escape sequence represents tab?
Constructor is executed when _____.
How many ways of reusing are there in class hierarchy?
Which of the following is a valid class declaration?
Class templates are generally used for storage classes.
What does the cerr represent?
Which of the following keywords is used to control access to a class member?
Which of the following statements is incorrect?
When Virtual Table is created?
The ……………. inherits some or all of the properties of the ……….. class.
A derived class with only one base class is called …………… inheritance.
A class can be derived from another derived class which is known as ………. inheritance.
When a base class is privately inherited by derived class public members of the base class can only be accessed by the ……… of the derived class.
In compile-time polymorphism, a compiler is able to select the appropriate function for a particular call at the compile time itself, which is known as …………
The pointers which are not initialized in a program are called ……………..
…………………… is useful in creating objects at run time.
In C++ ………………… operator is used for Dynamic memory allocation.
Which function return the current position of the get or put pointer in bytes.
To overload an operator ………………… keyword must be used along with the operator to be overloaded.
Because the lifetime of a local variable is limited and determined automatically, these variables are also called ……………………….