What's that Type?
Scary Syntax!
Varying Vocab
Bug Hunt
Misc
100

This variable type stores whole numbers.

What is an int?

100

These are used to end and separate program instructions, just like periods are used to separate English sentences.

What are semicolons?

100

This is a sequence of instructions that the computer will run one at a time.

What is a program?

100

public static void main(String [] args) {

        system.out.println(“This is Jeopardy!”);

}

System should be spelled with a capital S?

100

This is how we negate a boolean or operator.

What is bang (!)?
200

This variable type stores words or sentences.

What is a String?

200

These mark the beginning and end points of classes, methods, and conditionals.

What are curly brackets?

200

These are groups of instructions that allow us to reuse big blocks of code.

What are methods?

200

public static void main(String [] args) {

        int a = 5

        System.out.println(“Adding 10 to a”)

        a = a + 10

System.out.println(“a is now: ”)

System.out.println(a)    

    }

What are missing semicolons?

200

These are the two steps to creating a variable.

What is declare and assign?

300

This variable type stores numbers with a decimal point.

What is a double?

300

These are placed at the beginning and end of text to create a String inside Java.

What are quotation marks?

300

This is a set of instructions that runs if and only if something is true.

What is a conditional or an if statement?

300

public static void main(String [] args) {

        int a = 3;

        int b = 2;

        int c = a + b;

        System.out.println(c);

What is a missing curly bracket?

300

This is how you would make a few lines of code repeat based on a condition.

What is a while loop?

400

This variable type stores a value that is either true or false.

What is a boolean?

400

This is what we use when we want to see if two things are equal inside a conditional.

What is the double equals sign?

400

This is a container that stores information for the computer to remember.

What is a variable?

400

public class CharacterPrinter{

       public static void main(String[] args){

            String name = "Bucky";

       }

}

System.out.println("Welcome to the game!");

There is code written outside of the class and main method bodies?

400

This is how you would make some lines of code repeat a set number of times.

What is a for loop?

500

This is the key word that makes a new instance of an object after a declaration.

What is "new"?

500

When we want to give information to methods, we place the information between these.

What are parentheses?

500

This defines what kinds of information a variable can hold.

What is a type?

500

public static void main(String [] args) {

        double fusionRating = 2.5;

        if (fusionRating < 3.0){

            System.out.println(“Cold Fusion 

is feeling normal today.”);

        }
        else if(fusionRating = 3.0) {

            System.out.println(“Look out! 

He’s about to turn into Warm Fission!”);

        }

        else if(fusionRating > 3.0) {

            System.out.println(“WARM 

FISSION SMASH!!”);

        }

    }

What is a single equals sign in the conditional?

500

This is a block of code that has a name and can be called for easy repetition of code.

What is a method or function?