Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Computer Programming II CS141(Java) Mention the appropriate relationship between following classes: HODStaffMember CarFerrari Student-Address BankAccountFixedAccount House-Building Department-Teacher TrafficTrafficSign Provide the UML diagram for the following
Computer Programming II CS141(Java)
- Mention the appropriate relationship between following classes:
- HODStaffMember
- CarFerrari
- Student-Address
- BankAccountFixedAccount
- House-Building
- Department-Teacher
- TrafficTrafficSign
- Provide the UML diagram for the following program.
class Parent
{
public void getBike()
{
System.out.println("Suzuki Bike");
}
}
class Child extends Parent
{
public void getCar()
{
System.out.println("Swift car");
}
}
class inheritance
{
public static void main(String args[])
{
Parent p = new Parent();
p.getBike();
Child c = new Child();
c.getBike();
c.getCar();
}
}
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started