Translate

Showing posts with label Java. Show all posts
Showing posts with label Java. Show all posts

Monday, June 11, 2018

undefined 201

Top 10 Core Java Questions

Q1. What is the difference between an Inner Class and a Sub-Class? Ans: An Inner class is a class which is nested within another class. An Inner class has access rights for the class which is nesting it and it can access all variables and methods defined in the outer class. A sub-class is a class which inherits from...