πŸ“Š JAVA
Q. Determine Output:
class A{
public static void method(int i){
System.out.print("Method 1");
}

public static int method(String str){
System.out.print("Method 2");
return 0;
}
}

public class Test{

public static void main(String args[]){
A.method(5);
}
}
  • (A) Method 1
  • (B) Method 2
  • (C) Compile time error as final method can't be overloaded
  • (D) None of the above
πŸ’¬ Discuss
βœ… Correct Answer: (A) Method 1

Explanation: Overloading depends only on the method or constructor name and its parameter list i.e.

Explanation by: Ritu Nagar
Overloading depends only on the method or constructor name and its parameter list i.e.

πŸ’¬ Discussion


πŸ“Š Question Analytics

πŸ‘οΈ
75
Total Visits
πŸ“½οΈ
1 y ago
Published
πŸŽ–οΈ
Ritu Nagar
Publisher
πŸ“ˆ
81%
Success Rate