bairava surya wrote:explain me how super keyword works in this program?
The super keyword, as used in your example, in the constructor of the subclass, is choosing which constructor of the superclass to use to initialize the superclass components of the subclass. By default, if you don't have that call, it will use the no-arg (default) constructor of the superclass.
Henry