Choose a topic to test your knowledge and improve your C/C skills
ο»ΏThe statement i++; is equivalent to
In C language, a hexadecimal number is represented by writing
Which of the following library function below by default aborts the program?
If a member needs to have unique value for all the objects of that same class, declare the member as
Value of ix+j, if i,j are integer type and ix long type would be
Which of the following below can perform conversions between pointers to related classes?
How do we define a constructor?
Vtables
When class B is inherited from class A, what is the order in which the constructers of those classes are called
Which of the following is the most general exception handler that catches exception of any type?
Which of the following is the correct syntax of including a user defined header files in C++?
Which of the following is a correct identifier in C++?
Which of the following is called address
Which of the following is used for comments in C++?
What are the formal parameters 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 carriage return?
Which of the following escape sequence represents tab?
Who created C++?
Which of the following is called insertion/put to operator?
Which of the following is called extraction/get from operator?
A language which has the capability to generate new data types are called ___________
Wrapping data and its related functionality into a single entity is known as _____________
How structures and classes in C++ differ?
What does polymorphism in OOPs mean?
Which concept allows you to reuse the written code?
Which of the following shows multiple inheritances?
How access specifiers in Class helps in Abstraction?
C++ is ______________
What does modularity mean?
Which of the following class allows to declare only one object of it?
Which of the following is not a type of Constructor?
Which of the following is correct?
Out of the following, which is not a member of the class?
What is the other name used for functions inside a class?
Which of the following cannot be a friend?
Why references are different from pointers?
Which of the following provides a programmer with the facility of using object of a class inside other classes?
How many types of polymorphism are there in C++?
How run-time polymorphisms are implemented in C++?
How compile-time polymorphisms are implemented in C++?
Which of the following is an abstract data type?
Which concept means the addition of new components to a program as it runs?
Which of the following explains the overloading of functions?
Which of the following approach is used by C++?
Which operator is overloaded for a cout object?
Which of the following cannot be used with the virtual keyword?
Which concept is used to implement late binding?
Which of the following is correct?
Which of the following supports the concept that reusability is a desirable feature of a language?
Which of the following is a static polymorphism mechanism?
Which of the following is true? I) All operators in C++ can be overloaded. II) The basic meaning of an operator can be changed.
Which of the following is not a type of inheritance?
What happens if a class does not have a name?
Which of the following statement is true? I) In Procedural programming languages, all function calls are resolved at compile-time II) In Object Oriented programming languages, all function calls are resolved at compile-time
Which members are inherited but are not accessible in any case?
Which of the following is correct?