InterviewSolution
Saved Bookmarks
| 1. |
Does order of specifiers matter in Java? Will static public void work for main() method? |
|
Answer» Order of specifiers doesn’t MATTER in Java. The static public VOID will work for sure and the program WOULD COMPILE and run correctly. |
|