

MCQOPTIONS
Saved Bookmarks
1. |
What is the output of the following code? class San { public void m1 (int i,float f) { System.out.println(" int float method"); } public void m1(float f,int i); { System.out.println("float int method"); } public static void main(String[]args) { San s=new San(); s.m1(20,20); } } |
A. | int float method |
B. | float int method |
C. | compile time error |
D. | run time error |
Answer» D. run time error | |