Java Basics
Integers and Doubles
Methods
2D Arrays
Miscellaneous
100

The name of the method that runs when a Java program starts.

What is main?

100

The output of the following:
 
System.out.println(10/3);

What is 3?
100

The keyword used to have a method call result in a specific value.

What is return?

100

The number of Class object references that a 2D array with the following declaration would hold:


Class[][] arr = new Class[5][5];

What is 25?

100

The TV show that we watched a clip of when we first started the Chess Program project.

What is Silicon Valley?

200

The keyword used to designate that a field should be shared amongst all objects.

What is static?

200

The output of the following:

System.out.println(10 / 3.0);

What is 3.33?

200

The keyword used to designate that a method should not return a value.

What is void?

200

For the following declaration:

Class[][] arr = new Class[4][6];

The number of columns.

What is 6?

200

The letter we used for Knights instead of K and k. 

What is N and n?

300

The type of programming language that Java is.

What is an object oriented programming language?

300

The datatype that is more general between integer and double.

What is double?

300

The result of accessing a variable in method b that was declared in method a.

What is error?

300

True or False: There is never a difference in value between the length fields of any two sub arrays in a 2D array. 

What is True?

300

The name of the main character in popular netflix show "Squid Game".

Who is Gi Hun?

400

The access specifier used to designate that a field or method can not be accessed outside of its own class.

What is private?

400

The outcome of the following:

double x = 4;

System.out.println(x);

What is 4.0?

400

The way to distinguish between methods with the same name.

What is the parameter list, in other words, the number of parameters and the datatype of each?

400

The typical setup for iterating through each value/reference in a 2D array.

What is a nested for loop, using the outer for loop's iteration variable to access the different sub arrays and the inner for loop's iteration variable to access the different values/references in each sub array?

400

Country with most FIFA world cup titles.

What is Brazil?

500

The default value assigned to an integer variable if it is declared but not initialized.

What is it depends on whether the integer variable is a local variable to a method or a field of a class?

500
The outcome of the following:


int x = 3.5;

System.out.println(x);

What is error?

500

The return value of println.

What is null?
500

True or False: There is always a difference in value between the length field of the 2D array itself and the length field of one of the sub arrays in the 2D array.

What is False?

500

Cartoon about a young boy who grew up inside a talking whale and his pirate mentor who aspire to find a magical candied island.

What is the marvelous misadventures of flapjack?