Question: In what follows, you have a code with two errors. Find the errors, specify the type of the error (syntax or compile time error) and

In what follows, you have a code with two errors. Find the errors, specify the type of the error (syntax or compile time error) and explain them. Put your answer in the provided box. public class DynamicBindingDemo { public static void main(String[] args) { m (new GradStudent (); m(new Person()); } public static void m (Student x) { System.out.println(x.toString()); } } class Gradstudent extends Student{ } class Student extends Person{ public String tostring() { return "A Student"; } } class Person implements Comparable
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
