Unit 1: Primitive Types

  • Primitives Example:
  • GPA Calculator

  • Primitive Types
    • Boolean
    • Numeric
      • Character
        • char
      • Integral
        • Integer
          • byte
          • short
          • int
          • long
        • FLoating-point
          • float
          • double
  • Wrapper Classes (Non-Primitive)
    • String, Array, etc.
    • Like an object so has methods
  • Additional W1 Notes:
    • Input
      • Scanner input;
      • input = new Scanner(System.in);
      • System.out.print("Enter an integer: ");
      • input.close();
    • Output
      • System.out.println();

Unit 2: Using Objects

Unit 3: Booleans Expressions and if Statements

Unit 4: Iteration

Unit 5: Writing Classes

Unit 6: Array

Unit 7: ArrayList

Unit 8: 2D Array

Unit 9: Inheritance

Unit 10: Recursion