College Board Unit Notes
Collegeboard Unit Notes
- Unit 1: Primitive Types
- 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
Unit 1: Primitive Types
- Primitives Example:
- Primitive Types
- Boolean
- Numeric
- Character
- char
- Integral
- Integer
- byte
- short
- int
- long
- FLoating-point
- float
- double
- Integer
- Character
- 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();
- Input