Which inheritance property will save lot of development time?
code sharing
consistency
Inheriting
code Reusability
Which among the following of base class can be shared by the derived class?
methods
operators
keywords
tokens
What happens to the private members of base class when classes are inherited publicly, protectedly or privately?
not inherited
inherited
may be inherited
none
Which among the class is used for deriving other classes?
Sealed class
abstract class
base class
sub class
What is the access of protected base members in the derived class when the base class is inherited with public visibility mode?
private
internal
protected
public
Which type of base class members are not directly accessible to derived class?
Public
Protected
Private
Internal
Which of the following is not the type of an inheritance?
Multiple inheritance
Single inheritance
Multilevel inheritance
Distributive inheritance
Which among the following class does not contain the object declaration?
sealed class
Which OOPs concept will create new class from an existing class?
Inheritance
Encapsulation
Data hiding
Abstraction
Which class will inherit the members and member functions of base class?
derived class
super class