InterviewSolution
Saved Bookmarks
| 1. |
How Do You Achieve Abstraction In Java? |
|
Answer» Abstraction MEANS REVEALING only the required implementation details and hiding the INTERNAL details. Interfaces and abstract CLASSES in JAVA help achieve abstraction in Java. Abstraction means revealing only the required implementation details and hiding the internal details. Interfaces and abstract classes in java help achieve abstraction in Java. |
|