What is the basic syntax of Java? All Questions › Category: Java › What is the basic syntax of Java? 0 Vote Up Vote Down chetan shidling asked 4 years ago I need short information. 1 Answers 0 Vote Up Vote Down chetan shidling answered 4 years ago public class Chetan { public static void main(String[] args) { System.out.println("Hello World By Chetan"); } }Output: $javac Chetan.java$java -Xmx128M -Xms16M ChetanHello World By Chetan