Computer Science, asked by gilbertmathewspbtb9n, 1 year ago

What is the significance of the word ( public static void) in JAVA?

Answers

Answered by srk227
21
public : it is a access specifier that means it will be accessed by publically. static : it is access modifier that means when thejava program is load then it will create the space in memory automatically. void : it is a return type i.e it does not return any value. main() : it is a method or afunction name.
Answered by subhampanigrahi975
12

Answer:  public : it is a access specifier that means it will be accessed by publically. static : it is access modifier that means when thejava program is load then it will create the space in memory automatically. void : it is a return type i.e it does not return any value. main() : it is a method or afunction name.

Similar questions