What is the terminal?
A Java program is made up of one or more of these.
What are classes?
The data type for numbers with a decimal point, the data type for whole numbers, and the data type for true and false values. In that order.
What is double, int, and boolean?
This is how you reserve some memory to store a value in your computer.
What is declaring a variable?
Popular video game franchise where people have their pets fight each other until one of them passes out.
What is Pokemon?
Special program whose job is to translate instructions written in a programming language into binary.
What is the compiler?
The starting point of the program.
What is the main method?
The data type for the following value: 4.0
What is double?
This is information you must provide the computer about a variable.
What is its data type?
peligro
What is Jeopardy?
Name of command used to open a text editor.
What is nano?
The symbols used to enclose everything that is apart of a class or a method.
What are {}?
The precedence of each of the following arithmetic operators:
*, +, /, -, %
What is *, /, % has higher precedence than +, -?
What is the assignment operator (=)?
Name of Green One eyed Monster in Monsters Inc
Who is Mike Wazowski?
Name of command used to run Java programs.
What is java?
The format for the instruction for displaying the value of a variable on the terminal.
What is System.out.println(<variable name>); ?
The result of the following operations:
10 % 6 % 2
2 - 10 / 3
2 - 15 / 4.0
What is 0, -1, -1.75?
The meaning of the word variable.
What is able to change?
Super Smash Bros character that wields a bat and backwards cap.
Who is Ness?
What is .class?
The task that the program below completes:
public class Question{
public static void main(String[] args){
double r = 4.5;
double pi = 3.14159;
double result = pi * (r * r);
}
}
What is 'Calculate and store the area of a circle given its radius'?
When operators have the same precedence, you go by this to determine the order to be followed.
What is associativity?
What are "
A variable name must begin with a letter, dollar sign ($), or underscore ( ),
and may be followed by any combination of letters, dollar signs, underscores, or
digits (0-9)."?
The color of Mr. Lopez's lanyard.
What is yellow?