What is the output of the following program? public class Fr…

What is the output of the following program? public class Fruit{ public void myMethod() { System.out.println(“Fruit”); } } public class Apple extends Fruit{ public void myMethod() { System.out.println(“Apple”); } public static void main(String[] args) { Apple apple = new Fruit(); apple.myMethod(); } }