Back to Basics
Output
Conditional Logic
New Knowledge
100

This is used to store different types of data - numbers, strings, booleans, etc.

What is a variable?

100

This is where we see text printed from our program.

What is the console?

100
These are the 3 parts of an if statement.

What are: 

1. The keyword if

2. (condition)

3. {code}

100

This is the indicator that something in Java is a class.

What is the capitalized first letter?

200

This is the object used to take user input.

What is a Scanner?

200

We use this piece of code to display words from our program in the black console.

What is System.out.println()?

200

This control structure is used to repeat code over and over and over and over and over...

What is a loop?

200

This represents a person or thing in the real world.

What is a class or object?

300

These type of variables are native to Java (examples include int, char, and boolean).

What are primitive variables?

300

This character is also known as...

\

(Hint: starts with an 'E')

What is the escape character?

300

These are the 2 loops we have learned about.

What are: for loop and while loop?

300

This is what OOP stands for.

Object Oriented Programming

400

This is a series of repeatable instructions that result in the same output, given the same inputs.

What is an algorithm?

400

\n

What is the new line character?

400

This conditional operator means...

!=

What is 'not equal'?

400

To instantiate an object/class, we use this keyword.

What is 'new'?

500

In Java, this is how we represent...

//something

/*something*/

What is a comment?

500

\t

What is tab?

500

These operators are used to link 2 or more conditions.

What are the AND & OR operators?

500

These are the two types of constructors.

What are default and auxiliary