public class Test { public static void main(String[] args) { System.out.println(System.out.println("hi")); } }
Answers
Answered by
0
Answer:
Explanation:
Public- it is access specifier from anywhere we can access it Static- it is access modifier we can call the methods directly by class name without creating its objects Void- it is the return type Main- it is a method name String[]args- in java we accept only the string type of argument and store it
Similar questions