Computer Science, asked by kumarisonamggpm, 5 hours ago

which method is the starting point for all java programs??​

Answers

Answered by ZalimGudiya
7

Answer:

Java main method

Java main method is the entry point of any java program. Its syntax is always public static void main(String[] args) . You can only change the name of String array argument, for example you can change args to myStringArgs .

Answered by sreekanthmishra
0

Answer:

its starts with a static class method known as "main". it is the entry poin to the java programme.

all other things must be inside this class.

Explanation:

public static void main(String args[ ])

{

//code

}

#SPJ3

Similar questions