#Variables & Primitive Types
###Resources
- Video - Using Variables
- Unit 0 - Variables, Types, & Strings
- Oracle Java Tutorial - Variables
- Oracle Java Tutorial - Primitive Data Types
- Primitive vs. Reference Data Types
###Exercises
Complete these exercises in Variables.java
- Programming by Doing - Using Variables
- Consider a method
isOdd
. What type should it return? What type(s) should it take in? Create the method signature. - Consider a method
printHelloWorld
. What type should it return? What type(s) should it take in? Create the method signature. - Consider a method
greatestCommonFactor
. What type should it return? What type(s) should it take in? Create the method signature.