The language we learned today.
What is Java?
The following code throws an error. The line with the erroneous code is _______.
1 if a>2 {
2    a++;
3 }
What is line 1?
The following if statement will return _____.
int a = 3;
if (a==3) {
  System.out.println("yee");
}
What is yee?
The main character of Despicable Me is ______. (Hint: it is not the minions.)
Who is Gru?
The object in the Java logo.
What is a cup of coffee?
Individual lines in Java should end with this character.
What is a semicolon?
This is the missing character in the code below.
int var_name = 4
What is a semicolon?
The following code will print ______.
int bro = 3;
int sis = 5;
if (sis<bro) {
   System.out.println("haha");
} else {
   System.out.println("oopsies");
}
What is oopsies?
The three girls in Despicable me are Margo, Edith, and _____.
Who is Agnes?
This is the decade that Java was created in.
What is the 1990s?
What is class?
The following code throws an error. The line with the erroneous code is ______.
0  int a = 2;
1  if (a=4) {
2    a = a + 2;
3 }
What is line 1?
The following code will print ______.
int num = 3;
if (num%2 == 1) {
  System.out.println("Nice.");
} else {
  System.out.println("Oh no.");
}
What is nice?
The year the first Despicable Me movie was released.
What is 2010?
Java was designed by this man.
Who is James Gosling?
Java is both a compiled and interpreted language. It is first compiled into a language called _______, then interpreted by the computer.
What is bytecode?
The following for loop is incorrect. The missing part is ______.
for (i=0; i<5; i++){
   System.out.println(i);
}
What is "int"?
The following code will output ________.
int time = 22;
if (time < 10) {  System.out.println("Good morning.");
} else if (time < 20) {  System.out.println("Good day.");
} else {  System.out.println("Good evening.");
}
What is good evening?
This is the name of Gru's large metal transportation device.
What is a Grumobile?
This is Java's initial name, before it was changed to "Java".
What is Oak?