Data Types
Operators
Expressions
Statements
Variables
100

Java supports 8 of these.

What are (primitive) data types?

100

Includes the specified package/library for use in your Java file.

What is an import statement?

100

The editor we use for this class.

What is jGRASP?

100

Creates a variable for the first time.

What is a declaration statement?

100

It's value remains the same throughout the program.

What is a constant?

200

There are 4 primitive data types for this kind of numeric data.

What is integer?

200

This type of method has no return value.

What is void?

200

Eclipse is an example of this.

What is one of the existing Java IDEs?

200
These should always be capitalized.

What is a class?

200

Also known as a static field.

What is a class variable?

300

Store a person's name using a variable of this data type.

What is a String?

300

This a method that changes the value of a private variable.

What is a mutator?

300

A method that returns the value of a private variable.

What is an accessor/getter?

300

System.out.println("Hello world"); is an example of this type of statement.

What is an output statement?

300

Data item passed to a method.

What is a parameter?

400

Can have only one of two possible values, true or false.

What is boolean?

400

This operator is used to check if two variables have the same value.

What is the equality operator?

400

Sets the visibility of a variable.

What is public/private?

400

In order to write an input statement, this item must be imported into your Java program.

What is java.util.Scanner?

400

Holds an object's state.

What is an instance variable?