Advertisements
Advertisements
Question
In object oriented programming, the data and functions are wrapped together so that the data members should be accessed within the scope of a class. To adopt this principle, the data are declared with an access specifier. A class can also acquire some features from another class. This is called inheritance. Inheritance can be of different types. One type of inheritance allows acquiring the features of a base class into multiple targets. However, sharing multiple bases to a single target is not allowed in Java.
Based on the above discussion, answer the following questions:
- What is the term used for wrapping data and functions as a unit?
- Inheritance
- Polymorphism
- Object
- Encapsulation
- Name the access specifier that allows accessing data members within the scope of a class?
- public
- private
- protected
- secure
- Which type of inheritance allows accessing a base into multiple targets?
- Hierarchical
- Single
- Multilevel
- Hybrid
- Which type of inheritance is not allowed in Java?
- Multilevel
- Multiple
- Hierarchical
- Nested
Case Study
Solution
- iv. Encapsulation
- ii. private
- i. Hierarchical
- iii. Multiple
shaalaa.com
Is there an error in this question or solution?