Question: What does this program print? How does Java know which getJuice() method to call when there are so many of them? abstract class Fruit{ public

What does this program print? How does Java know which getJuice() method to call when there are so many of them?

abstract class Fruit{ public abstract String getJuice(); } class Mango extends Fruit{ @Override public String getJuice(){ return "Mango juice"; } } class Apple extends Fruit{ @Override public String getJuice(){ return "Apple juice"; } } public class Main{ public static void main(String[] args){ Fruit f = new Mango(); String juice = f.getJuice(); System.out.println(juice); } }

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!