Review 2026/2027 Expert
Verifed Ace the Test
Object - ANSWER ✔✔represent real-world objects or abstract
concepts.
Class - ANSWER ✔✔specify the attributes of an object and the
actions an object can take
UML Diagram - ANSWER ✔✔Can be used to summarize the
properties of a class
Instance Variable - ANSWER ✔✔can be accessed outside of the
class using the "." operator
, Method - ANSWER ✔✔defines an action that an object can perform,
it can also be called outside of the class by using the "." operator
Access Modifiers - ANSWER ✔✔Used to specify how a class,
method, or instance variable can be accessed
Public Method or instance variable - ANSWER ✔✔a method that is
accessible to another method of any other class
Private Method or instance variable - ANSWER ✔✔a method that is
only accessible to methods in the same class
Null Constant - ANSWER ✔✔Can be used as a placeholder for a
variable that does not refer to an actual object
Void Method - ANSWER ✔✔Does NOT return a value
Method Header Contains: - ANSWER ✔✔Access Modifier: Public
Return Type: void
Name of method: writeOutput
Parameter list: ()
Method Body - ANSWER ✔✔Sequence of statements that is
executed when the method is called, surrounded by {}
Method can be defined to return a value - ANSWER ✔✔True