InterviewSolution
Saved Bookmarks
| 1. |
What will be the output if a=5? public static void main(int a){System.out.println(“area of square” + a*a);} |
| Answer» AREA of SQUARE is 25Explanation: | |