A constructor that accepts an int which is used


The superclass, EducationalInstitution, contains: 
an int instance variable, duration, indicating the standard number of years spent at the institution
A constructor that accepts an int which is used to initialize the duration instance variable
a method graduationRequirements that returns a String. The (default) behavior of graduationRequirements is to return a String stating "d years of study", where d is the value of the duration instance variable
Write a class definition for the subclass LawSchool that contains: 
a (default) constructor that invokes the superclass constructor with the value 3 (law school is typically a three year program).
a (overridden) method graduationRequirements that returns the string "3 years of study and passing the bar". You MUST invoke the graduationRequirements method of the superclass in this method (to obtain the first portion of the resulting string).

Request for Solution File

Ask an Expert for Answer!!
Basic Computer Science: A constructor that accepts an int which is used
Reference No:- TGS0107499

Expected delivery within 24 Hours