Choose a topic to test your knowledge and improve your C/C skills
Which of the following type of class allows only one object of it to be created?
Which of the following is not a type of constructor?
Which of the following statements is correct?
Which of the following is not the member of class?
Which of the following concepts means determining at runtime what method to invoke?
Which of the following term is used for a function defined inside a class?
Which of the following concept of oops allows compiler to insert arguments in a function call if it is not specified?
How many instances of an abstract class can be created?
Which of the following cannot be friend?
Which of the following concepts of OOPS means exposing only necessary information to client?
Why reference is not same as a pointer?
cout is a/an __________ .
Which of the following concepts provides facility of using object of one class inside another class?
How many types of polymorphisms are supported by C++?
Which of the following is an abstract data type?
Which of the following concepts means adding new components to a program as it runs?
Which of the following statement is correct?
Which of the following correctly describes overloading of functions?
Which of the following approach is adapted by C++?
Which of the following is correct about function overloading?
Which of the following is correct about class and structure?
Which of the following concepts means wrapping up of data and functions together?
Which of the following concepts means waiting until runtime to determine which function to call?
How "Late binding" is implemented in C++?
Which of the following operator is overloaded for object cout?
Which of the following is the correct class of the object cout?
Which of the following cannot be used with the keyword virtual?
Which of the following functions are performed by a constructor?
Which of the following problem causes an exception?
Which one of the following options is correct about the statement given below? The compiler checks the type of reference in the object and not the type of object.
Which of the following is the correct way of declaring a function as constant?
Which of the following concepts is used to implement late binding?
Which of the following statement is correct?
Which of the following factors supports the statement that reusability is a desirable feature of a language?
Which of the following ways are legal to access a class data member using this pointer?
Which of the following is a mechanism of static polymorphism?
Which of the following is correct about the statements given below? All operators can be overloaded in C++. We can change the basic meaning of an operator in C++.
What happens if the base and derived class contains definition of a function with same prototype?
Which of the following are available only in the class hierarchy chain?
Which of the following is not a type of inheritance?
Which of the following operators cannot be overloaded?
In which of the following a virtual call is resolved at the time of compilation?
Which of the following statements regarding inline functions is correct
Which one of the following is the correct way to declare a pure virtual function?
Which of the following header file includes definition of cin and cout?
Which of the following keyword is used to overload an operator?
Which inheritance type is used in the class given below? class A : public X, public Y {}
Which one of the following is correct about the statements given below? All function calls are resolved at compile-time in Procedure Oriented Programming. All function calls are resolved at compile-time in OOPS.
Which of the following is an invalid visibility label while inheriting a class?
Which one of the following options is correct?
Which of the following statements is correct in C++?
Which of the following is used to make an abstract class?
Which of the following access specifier is used as a default in a class definition?
What is correct about the static data member of a class?
Which of the following provides a reuse mechanism?
Which of the following statement is correct?