
Note HW #58 is Coding Bats up through Win Race
#59 is for Coding Bats scaredyCat and levelField

Note HW #58 is Coding Bats up through Win Race
#59 is for Coding Bats scaredyCat and levelField
20 MC, 2 FRQ
STUDY:

#1) Open the Google Doc Above. Create a NEW doc in your own account. Copy and paste this into your own document. Fill in the answers on the right hand side.




White Worksheet, both sides
Arrays #1 and Arrays #2
DUE MONDAY AFTER THANKSGIVING
Udacity Problem Set #4, skip #8
Note:
readInt is special to CodeHS. The real way to read a String is to use the Scanner class like this:
Scanner in = new Scanner(System.in);
System.out.println(“Please enter a name: “);
String name = in.read();

DUE TUESDAY, November 22
Udacity Problem Set #3
#1-20, skip #11
And Quiz Question #1: Yard Calculator

Help:
2. Remember that “casting” will turn one variable type into another: (int) 45.6 = 45