Problem:
Question- Create an abstract class called Student. The Student class includes a name and a Boolean value representing full-time status. Include an abstract method to determine the tuition with full-time students paying a flat fee of $2 000 and part-time students paying $200 per credit hour. Create two subclasses called FullTime and PartTime.
Create an application that demonstrates how to create objects of both subclasses. Save the files as Student.java Full Time.java Part Time.java and Use Student.java.
Show the code, demonstrate it works properly and describe what it is doing.