Question: This is Java Programing TACOMA Question 3: Inheritance Question (12 points): Consider the following two classes: public class Car { public void m1() { System.out.println(car

This is Java Programing
This is Java Programing TACOMA Question 3: Inheritance Question (12 points): Consider

TACOMA Question 3: Inheritance Question (12 points): Consider the following two classes: public class Car { public void m1() { System.out.println("car 1"); public void m20 { System.out.println("car 2"); public String toString() { return "vroom": public class Truck extends Car { public void mio { System.out.println("truck 1"); public void m20 { Super.m1O; public String toString() { return super.toString() + super.toString(); And assuming that the following variable has been declared: Truck mytruck - new TruckO): What is the output from the following statements? .01) System.out.println(mytruck); mytruck.m1O; .03) mytruck.m20

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!