Implemented Abstraction
Created an abstract class Person have attribute name and an abstract method printDetails. The child class Employee inherits the Person class and added body of abstract class. Created object of Employee in Main class for testing.