which method shows from where the program will start running in java
Answers
Answered by
2
Answer:
button Java starts execution in the main method as shown in the code below ( public static void main(String[] args) ). The body of the main method is all the code between the first { and the last } . Every class in Java can have a main method.
Similar questions