ITE MIDTERMS Flashcards
the representation of object characteristics on java programming
INSTANCE FIELDS
the keyword that is used to attach a method to the class, not an instance
static
the abstraction of a real world concept into programming
OBJECT
capabilities of an object
BEHAVIOR
_________ is represented by methods
BEHAVIOR
___________ is represented by variables
STATES
provides the output of the method
return
the keyword that points to the current instance
this
this works as input for the method
PARAMETER LIST
blueprint of an object
CLASS
this property states that objects are smart on their own but requires other to tell what it needs to do
ANTHROPOMORPHIC
the keyword used in creating object instance
new
the concept of hiding details you do not care about as a user
BLACK BOX
other than the usage of the new keyword, it is another way of declaring and filling up the array
INITIALIZER LIST
the field that tells how many elements are there in an array
LENGTH
thrown whenever an invalid index is accessed from the array
ArrayIndexOutOfBoundsException
a collection of similar types of data
ARRAY
means the creation of a constructor
INSTANTIATION
A method that is called to create a certain object
CONSTRUCTOR
The _________ or ________is assigned to each element of the array
INDEX, SUBSCRIPT
This is to allow the program to access an individual member of the array
INDEX OR SUBSCRIPT
The length field of an array
ARRAY LENGTH
________ is a mechanism of creating an array of objects with different data types
ARRAY OF OBJECT
this type of array can be seen as a table with ‘x’ rows and ‘y’ columns where the row number ranges from 0 to (x-1) and column number ranges from 0 to (y-1).
Two-dimensional array