JAVA: Conditionals and Loops
if statement int x = 7; if (x < 42) { System.out.println(“Hello”); } if…else statement int age = 30; if (age < 16) { System.out.println(“Too Young”); } else { System.out.println(“Welcome!”); …
JAVA & OOP Basics (Notes)
Definitions & Abbreviations: JDK (Java Development Kit): Download JVM (Java Virtual Machine) IDE (Integrated Development Environment), e.g. IntelliJ IDEA: Download & Help OOP (Object-Oriented Programming) UML (Unified Modeling Language) UI …


