Fundamentals of Java
Loops
Decision Structures
Methods
Classes
100

Primitive data type consisting of 8 bytes and is often used to represent decimal numbers

What is a Double

100

often used to display a menu atleast once, and requires user input to either navigate it or shut the program down

What is a Do while loop.
100

Type of expression that has a value of true or false

What is a Boolean expression.

100

This type of method does not return a value.

What is void
100
This is a class memmber that holds data

What is a field

200

Every complete statement ends with this.

What is a semicolon

200

without it, loops will run endlessly seeking no end

What is the loop counter, or loop control variable.

200

a boolean variable that signals when some condition exists in the program.

What is a flag.

200

This appears at the beginning of a method definition.

What is the method header

200

This key word causes an object to be created in memory.

What is the key word new?

300

used to surround a char data type.

What are ' ' . (apostrophes)

300

Each repetition of a loop is known as this

What is an iteration

300

an if statement that appears inside another if statement.

What is a nested If statement.

300

The body of a method is enclosed in these

What is curly braces {}

300

This is a method that gets a value from a class's field, but does not change it.

What is an accessor

400

key word to declare a named constant.

Final

400

When a program is finished using a file, it should do this.

What is close the file

400

When determining whether a number is inside a range, it’s best to use this operator.

What is &&

400

This statement causes a method to end and sends a value back to the statement that called the method.

What is a return statement

400

This is a method that is automatically called when an instance of a class is created.

What is a constructor.