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
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
Get step-by-step solutions from verified subject matter experts
