super keyword performs important role in three places
Constructor Level
Method Level
Variable Level
Constructor Level
super keyword is used to call parent class constructor. This constructor can be default constructor or parameterized constructor.
Default constructor : super();
Pa...