Question: 1. Select the correct text in the passage In the following subclass, which line invokes a method from the superclass? public class Triangle extends Shape

1. Select the correct text in the passage In the following subclass, which line invokes a method from the superclass? public class Triangle extends Shape ( public double base, height; ublic Triangle() super(3); base 0 height0; public Triangle(double b, double h) super(3); baseb; height-h; public double calcArea) area 0.5 base height return area public void showData() super.showDatal:W System.out.printin("The base is" + base); System.out.printin("The height is"+ height); Select... Select. super(3); (the first one) super(3); (the second one) public double calcArea0 { public void showData0 super.showData0
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
