2.1 Writing Your First Java Program:

public class MyFirstProgram {
    public static void main(String[] args) {
        System.out.println("Hello, Folks!");
    }
}
javac MyFirstProgram.java  // Compiles the program

java MyFirstProgram        // Runs the program

2.2 Understanding Basic Syntax and Structure:

Java has a specific syntax and structure that you need to understand. Here are a few key points: