Programming q15 TEST
QUESTIONS & ANSWERS
ALREADY GRADED A+ 2025
Class Definition of a type ; a plan or blueprint( i.e. Strings
defines anything that is a string)
Practice questions for this set
, Learn 1/ 7 Study with Learn
Definition of a type ; a plan or blueprint( i.e. Strings - defines anything that is a
string)
Choose matching term
overriding; change;overrides;
1 Static Method 2
signature;return type
3 Inheritance 4 Class
Don't know?
Terms in this set (153)
Object A specific instance of a class or a thing that fulfills the definition
that all other things of that definition fulfill
(i.e. A specific string = specific instance)
Specifies the members of the objects
-Instance Variables
Class -Methods
, Instance Variables
Attributes of a class
Methods
Actions class can complete
Can be public/private, static/non-static,
and of a certain type(primitive/class)
Instance Variables
Methods Can be public/private, static/non-static,
and have a variables with scope within
it, and have a return type
(primitive/class) returning only one
thing.
Non-static Method Must be called by an instance of the class in which it resides
Static Method Can be called directly by choosing the name of the class and
method name
Creating a constructor
Points to the address that holds the
instance variables of the ____and gives
access to the method of the class
Instance