Computer Science, asked by evashree2212, 1 month ago

public class Test { public static void main(String[] args) { System.out.println(System.out.println("hi")); } }​

Answers

Answered by itzkrish9
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