Operations
Variables/Types
Methods
ERRORS
miscellaneous
100

The result of: 1 + 5 / 2 

What is 3?

100

What this prints out:


double x = 10;

System.out.println(x / 3);

What is 3.333333?

100

The ways to differentiate methods:
- method name

- number of parameters

- data types of parameters

- _____ of parameters

What is order?

100

The error found in the following:

public static void main(String[] args){
         printSum(5, 10);

}

public static void printSum(int x){
        System.out.println(x + y);
}

What is "too many arguments"?

100
Item used as an eraser in class that is typically not used for erasing

What is a pair of socks?

200

The result of:

(3 + 2 * 10 % (8 - 2)) / 2.0

What is 2.5?

200

What this prints out:


int x = 10.0;

System.out.println(x / 3);

What is error?

200

Out of all the methods in a program, this method is the starting point of the program. 

What is main?

200

The error in the following:

12 + 36 - 16 * 9 % 3 4 > 32 || 193

What is "no operation between values"?

200

Famous superhero quartet, recently had a movie come out

What are the fantastic four?
300

The result of:
13 != 13 || 45 == 45 && 12 > 11.5

What is true?

300

What this prints out:


int x = (int) 10.0;

System.out.println(x / 3);

What is 3?

300
If a method returns a value, that value is returned to the _______.
What is the call?
300

The error found in the following:

double x = 1 / 2;

int y = 4 / x;

What is "divide by zero error"?

300

Movie about a futuristic race, where the protagonist drives a white and red car.

What is Speed Racer?

400

The result of:

!4 > 2 || 3 < 20

What is ERROR?

400

what this prints out:

public static void main(String[] args){

        System.out.println(foo(10));


public static int foo(double x){

        return x / 4;

}

What is 2?

400
The general format for calling a static method from another class.

What is Class Name.method call?

400

The errors found in the following:

public static double getAverage(int x, int y, int z){

         double average = (x + y + z) / 3;
}

What is "not returning anything" and "integer division"?

400

Video game where you play as a raccoon thief who works with a hippo and turtle to perform heists. 

What is Sly Cooper?

500

What gets printed out:

int num = 1;
int result = !!(14 <= 14) && num++ >= 2;

System.out.println(result);

What is false?

500

what this prints out:

double x = 5 / 2;

double y = (double) (3 / 2);

x *= y + 1;

What is 4.0?

500

The number of times Java switches methods in its execution of a program that has the following:

3 calls in Method A to Method B

2 calls in Method B to Method C

What is 10?

500

The error found in the following:


41.2 >= 52.3 && true != false || 30 - 2 * 3

What is "using or with a int value"?
500
Cartoon show where the main character is a purple cat-rabbit-bear type child creature who works as an apprentice to a chef. There is a side character who communicates only using one phrase.

What is Chowder?

M
e
n
u