CS211 S07 Quiz 2 2/20/07 Please write legibly. 1. My name is_______________________________________________________________________ 2. My Cornell NetId is_____________________ 3. Which of the following are *not* Java keywords? abstract concrete bit byte import export this that instance of static dynamic throw throws new old implements extends 4. Consider the following program. class Foo { String s; Foo(String t) { s = "Happy " + t; } public String toString() { return s; } } class Bar extends Foo { Bar(String r) { super("New " + r); } } What would get printed if we executed System.out.println(new Bar("Year!"))? ____________________________________________________________________________________ 5. The one thing in this course I am having the most trouble with is________________ ____________________________________________________________________________________ ____________________________________________________________________________________