The name of the method that runs when a Java program starts.
What is main?
The output of the following:
System.out.println(10/3);
The keyword used to have a method call result in a specific value.
What is return?
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?
The TV show that we watched a clip of when we first started the Chess Program project.
What is Silicon Valley?
The keyword used to designate that a field should be shared amongst all objects.
What is static?
The output of the following:
System.out.println(10 / 3.0);
What is 3.33?
The keyword used to designate that a method should not return a value.
What is void?
For the following declaration:
Class[][] arr = new Class[4][6];
The number of columns.
What is 6?
The letter we used for Knights instead of K and k.
What is N and n?
The type of programming language that Java is.
What is an object oriented programming language?
The datatype that is more general between integer and double.
What is double?
The result of accessing a variable in method b that was declared in method a.
What is error?
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?
The name of the main character in popular netflix show "Squid Game".
Who is Gi Hun?
The access specifier used to designate that a field or method can not be accessed outside of its own class.
What is private?
The outcome of the following:
double x = 4;
System.out.println(x);
What is 4.0?
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?
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?
Country with most FIFA world cup titles.
What is Brazil?
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?
int x = 3.5;
System.out.println(x);
What is error?
The return value of println.
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?
Cartoon about a young boy who grew up inside a talking whale and his pirate mentor who aspire to find a magical candied island.