InterviewSolution
Saved Bookmarks
| 1. |
What will be the output in below code? |
|
Answer» PUBLIC class Demo{ public static void main(STRING[] arr){ System.out.println(“Main1”); } public static void main(String arr){ System.out.println(“Main2”); } } Output: Main1Reason: |
|