Question: What does this code fragment print? Why is this an example of polymorphism? Measurable [] data = { new BankAccount (10000), new Country(Belgium, 30510) };
What does this code fragment print? Why is this an example of polymorphism?
![]()
Measurable [] data = { new BankAccount (10000), new Country("Belgium", 30510) }; System.out.println (average (data));
Step by Step Solution
3.32 Rating (164 Votes )
There are 3 Steps involved in it
The image depicts a fragment of Java code that is using the concept of polymorphism Polymorphism in objectoriented programming is the ability of objec... View full answer
Get step-by-step solutions from verified subject matter experts
