Question: **Using Java** The below program demonstrates the concept of method overloading. Write the output of the program. class Demo{ void display (double a, double b)

**Using Java**
The below program demonstrates the concept of method overloading. Write the output of the program. class Demo{ void display (double a, double b) { System.out.print("Method A"); } void display (double a, float b) { System.out.print("Method B"); } public static void main(String args[]) { Demo obj = new Demo (); obj.display (9, 20.67); }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
