Prints text or values to the console.
Syntax: System.out.println("text");
Adds two numbers and displays the result.
Syntax: int sum = a + b;
Multiplies two numbers and shows the product.
Syntax: int product = a * b;
Executes code based on a condition.
Syntax: if (condition) { } else { }