Inheritance

Gap-fill exercise

  
Fill in all the gaps, then press "Check" to check your answers. Use the "Hint" button to get a free letter if an answer is giving you trouble. You can also click on the "[?]" button to get a clue. Note that you will lose points if you ask for hints or clues!
1.The technique of deriving a new class from an old one is called .
2.An existing class that is "parent" of a new class is called a .
3.New class that inherits properties of the base class is called a .
4.The default access specifier is .
5.In private mode the public and protected members of Base class become members of Derived class.
6.In protected mode, the public and protected members of Base class becomes members of Derived class.
7.