Polymorphism
Syntax
Arithmetic and Assignment Operators
Comparative and Logical Operators
Variable Types
100

The definition of polymorphism. (HINT: Having ____ ____.)

What is having many forms?

100

An instance of a class. 

What is an object? 

100

How to add and subtract? 

What is "+" and "-"?

100

Checking if something is "not".

What is "!"?

100

Stores integers (whole numbers) without decimals. 

What is an int? 

200
Classes are related to each other by _____?

What is inheritance? 

200

A template/ set of instructions that defines the behaviors for a specific type of object. 

What is a class? 

200

How to multiply and divide? 

What is "*" and "/"? 

200

Checking if something is equal to and not equal to.

What is "==" and "!="? 

200

Stores floating point numbers or decimals. 

What is a double? 

300

The class whose properties are inherited from.

What is super/ parent class? 

300

A block of code that performs a specific task.

What is a method?

300

How to increment / decrement? 

What is "++" and "--"?

300

Checking if something is greater than and less than. 

What is ">" and "<"? 

300

Stores text. 

What is a String? 

400

The class(es) who inherit properties of another class. 

What is sub/ child class?
400

Each code statement must end with a ___.

What is a semicolon? 

400
The operator we use to assign a value to a variable.

What is "="?

400

Returns true if both statements are true.

What is "&&"?

400

Stores a single character such as 'a' or 'b'. 

What is a char? 

500

Example of when to call super(). 

super() can be used to invoke immediate parent class constructor.

500

These denote when a block of code begins and ends. 

What are curly brackets ({})? 

500
The operator that returns the division remainder. 

What is "%"? 

500

Returns true if one of the statements is true.

What is "||"?

500

Stores values with two states: true/ false.

What is a boolean? 

M
e
n
u