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.

**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

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!