Setup
Java Programs
Primitive Data Types
Variables
miscellaneous
100
Program that lets you interact with the computer via written commands.

What is the terminal?


100

A Java program is made up of one or more of these.

What are classes?

100

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?

100

This is how you reserve some memory to store a value in your computer. 

What is declaring a variable?

100

Popular video game franchise where people have their pets fight each other until one of them passes out.

What is Pokemon?

200

Special program whose job is to translate instructions written in a programming language into binary.

What is the compiler?

200

The starting point of the program. 

What is the main method?

200

The data type for the following value: 4.0

What is double?

200

This is information you must provide the computer about a variable.

What is its data type?

200
The translation of this word from spanish to english:

peligro

What is Jeopardy?

300

Name of command used to open a text editor.

What is nano?

300

The symbols used to enclose everything that is apart of a class or a method.

What are {}?

300

The precedence of each of the following arithmetic operators:

*, +, /, -, %

What is *, /, % has higher precedence than +, -? 

300
The operator used to assign a value to a variable.

What is the assignment operator (=)?

300

Name of Green One eyed Monster in Monsters Inc

Who is Mike Wazowski?

400

Name of command used to run Java programs.

What is java?

400

The format for the instruction for displaying the value of a variable on the terminal.

What is System.out.println(<variable name>); ? 

400

The result of the following operations:

10 % 6 % 2

2 - 10 / 3

2 - 15 / 4.0

What is 0, -1, -1.75?

400

The meaning of the word variable.

What is able to change?

400

Super Smash Bros character that wields a bat and backwards cap. 

Who is Ness?

500
File extension used for files produced by the javac comamnd.

What is .class?

500

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'?

500

When operators have the same precedence, you go by this to determine the order to be followed.

What is associativity? 

500
The complete rules for naming variables in Java.

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)."?

500

The color of Mr. Lopez's lanyard.

What is yellow?

M
e
n
u