Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 1.13 KB

variables.md

File metadata and controls

18 lines (13 loc) · 1.13 KB

#Variables & Primitive Types

###Resources

###Exercises

Complete these exercises in Variables.java

  1. Programming by Doing - Using Variables
  2. Consider a method isOdd. What type should it return? What type(s) should it take in? Create the method signature.
  3. Consider a method printHelloWorld. What type should it return? What type(s) should it take in? Create the method signature.
  4. Consider a method greatestCommonFactor. What type should it return? What type(s) should it take in? Create the method signature.