Methods/Variables
Output
Vocabulary
Concept
Inheritance
100

If you have code that is repeated, you would typically put the code in one of these

What is a method?

100

System.out.println(2 % 3);

What is 2?

100

_____________ is the ability of an object to take on many forms.

What is polymorphism?

100

This is the more general class that forms the basis for inheritance

What is superclass ?

100

This keyword is used in Java to create a parent/child relationship between two classes

What is EXTENDS?

200

This type of variable belongs to the class object, and is not shared among other objects

What is a class or instance variable?

200

System.out.println(1 / 3);

What is 0?

200

This is the name used to call a parent class?

What is super?

200

more specialized class that inherits from the superclass ?

What is subclass ?

200

This is it called when two methods have the same name but different parameters

What is overloading?

300

This type of variable is shared among all objects of the same class type

What is a static variable?

300

System.out.println(2 + 3 * 5 - 1);

What is 16?

300

In Java how many parents can a class have?

What is One?

300

In Java, every class that does not specifically extend another class extends this

What is Object class?

300

When you create a method in your subclass, what replaces the method of a parent class

What is overriding?

400

A name associated with a memory location in the computer.

What is a variable?

400

What is the value of len after the following executes?

String s1 = "Hey, buddy!";
int len = s1.length();

What is 11?

400

This is a class whose object wraps or contains a primitive data types 

What is wrapper class?

400

These can be accessed by methods of all classes


What is public?


400

This is the mechanism for extending existing classes by adding methods and fields

What is Inheritance?

500

This type should you use to represent the amount of money you have?

What is double?

500

true or false: A constructor can return a value

What is FALSE

500

Use this when storing an unknown quantity of objects

What is ArrayList?

500

Sets of classes can form complex ________

What are Herarchies?

500

If you have a class called Car and another class called Ferarri, how do you make Ferarri inherit public attributes/methods from Car?

What is public class Ferarri extends Car?

M
e
n
u