Install (Use installer or copy existing installation)
Create Console Application (Create Test.java, Compile & Run)
javac.exe (Bin Directory: Compile source Classes .java into .class files)
java.exe (Bin Directory: Run compiled .class files)
Comments //Single line comment /* Multi line comment */
Print System.out.println("Hello " + name);
Exceptions try { .. } catch(Exception e) { ... }
Statements
● Conditional if, switch, VARIABLE = CONDITION ? TRUE : FALSE
● Loop for, while, do
● Jump break, continue, return
Operators
● Comparison compare values of two variables
● Arithmetic perform mathematical operations
● Assignment assign value to variable
● Bitwise combine bits within one or two int or long values
● Logical combine boolean values that can be only TRUE or FALSE