Primitives
Class-y
Operator please
Making Objects
Methodology
100

A primitive data type in Java that is used to store a positive or negative number including floating point values (numbers after the decimal point) and 0.0.

What is a double?
100

the act of creating an object of a class for use in a program

What is instantiation?

100

represented by the = symbol, allows a program to initialize or change the value stored in a variable. The value of the expression on the right is stored in the variable on the left.


What is the assignment operator?

100

Java keyword that creates a new object which involves: allocating space in memory for an object, assigning a memory address, and initiating a call to the constructor for the object

What is "new"?

100

A.k.a. class methods. They are invoked by either just using the method name or using the class identifier, the dot notation, and then the method name. 

What are static methods?

200

a primitive data type represented by one bit, either true or false

What is a boolean?

200

a specific instance of a class with defined attributes

What is an object?

200

Denoted as %, used to signify a special kind of integer division that returns the remainder instead of the quotient


What is modulo operator (modulus division)?

200

A special method of a class that initializes an object of that type. They are invoked to create objects.

What is a constructor?

200

methods that execute code and then return a single value to the calling program and are part of an expression


What are non-void methods?

300

A primitive data type in Java that is used to store a whole number, positive or negative, or zero.


What is an int?

300

the formal implementation, or blueprint, of the attributes and behaviors of an object


What is a class?

300

Used to add 1 to the stored value of a variable.

What is the increment operator (++)?

300

an address that indicates where an object’s variables and methods are stored

What is an object reference?

300

Called through objects of the class. They are invoked by using the object identifier, the dot notation, and then the method name.


What are non-static methods?

400

A data type that uses a small amount of memory to represent a single item of data. Ex. int, double, boolean


What is a primitive?

400

a specific realization of an object

What is an instance?

400

(int) and (double) can be used to create a temporary value converted to a different data type


What is the casting operators?

400

A value that is passed into a constructor or other method. They allow values to be passed to the constructor to establish the initial state of the object.


What is a parameter?

400

methods that execute code but do not return a value and are not called as part of an expression

What are void methods?

500

a numeric value assigned to a variable, like 2 or 4.5


What is a literal?

500

The data of an object that will constitute the state of an object; captured by instance variables.

What is an attribute?

500

Use to subtract 1 from the stored value of a variable

What is the decrement operator?

500

a special value used to indicate that a reference is not associated with any object

What is null?

500

name of a method including the order and type of parameters

What is a (method) signature?

M
e
n
u