The result of: 1 + 5 / 2
What is 3?
What this prints out:
double x = 10;
System.out.println(x / 3);
What is 3.333333?
The ways to differentiate methods:
- method name
- number of parameters
- data types of parameters
- _____ of parameters
What is order?
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"?
What is a pair of socks?
The result of:
(3 + 2 * 10 % (8 - 2)) / 2.0
What is 2.5?
What this prints out:
int x = 10.0;
System.out.println(x / 3);
What is error?
Out of all the methods in a program, this method is the starting point of the program.
What is main?
The error in the following:
12 + 36 - 16 * 9 % 3 4 > 32 || 193
What is "no operation between values"?
Famous superhero quartet, recently had a movie come out
The result of:
13 != 13 || 45 == 45 && 12 > 11.5
What is true?
What this prints out:
int x = (int) 10.0;
System.out.println(x / 3);
What is 3?
The error found in the following:
double x = 1 / 2;
int y = 4 / x;
What is "divide by zero error"?
Movie about a futuristic race, where the protagonist drives a white and red car.
What is Speed Racer?
The result of:
!4 > 2 || 3 < 20
What is ERROR?
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?
What is Class Name.method call?
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"?
Video game where you play as a raccoon thief who works with a hippo and turtle to perform heists.
What is Sly Cooper?
What gets printed out:
int num = 1;
int result = !!(14 <= 14) && num++ >= 2;
System.out.println(result);
What is false?
what this prints out:
double x = 5 / 2;
double y = (double) (3 / 2);
x *= y + 1;
What is 4.0?
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?
The error found in the following:
41.2 >= 52.3 && true != false || 30 - 2 * 3
What is Chowder?