Which of the following type of class allows only one object of it to be created?
Which of the following concepts means determining at runtime what method to invoke?
Which of the following concept of oops allows compiler to insert arguments in a function call if it is not specified?
Which of the following concepts of OOPS means exposing only necessary information to client?
Which of the following concepts provides facility of using object of one class inside another class?
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?
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 factors supports the statement that reusability is a desirable feature of a language?
What happens if the base and derived class contains definition of a function with same prototype?
Which inheritance type is used in the class given below?
class A : public X, public Y
{}