Apr 19
Java Interview Question – Explain public static void main(String[] args)
This is an important interview question in Java and mainly asked to Freshers. I will try to explain my best it here. A Java program has a starting point of execution with a predefined signature of main method in a class. Method signature of main method is given below:-
1
|
public static void main(String[] args){}
|
This could be also written […]