Slide 5
Slide 5 text
TEXT
BASIC JAVA
▸ Variables (with data types ): int count = 5
▸ Collections : Array, ArrayList, etc:
▸ int[] numbers = new Int [] { 1, 2, 3 }
▸ Conditionals:
▸ if / else, switch, etc
▸ Functions / Methods
▸ private int getMaxValue(int valueA, int valueB) { … }
▸ Classes
▸ Packages