Computer Science Java Vocabulary
Exam 2025 Questions and Answers
Argument - ANSWER✔✔-A value that appears in a call to a method
Attributes - ANSWER✔✔-Parts of a class that contain the current state of objects of that
class. The member variables of a class.
Behaviors - ANSWER✔✔-Parts of a class that define what objects of that class can do.
The methods within a class.
Class - ANSWER✔✔-A list of specifications that define a certain type of object and can
be used to create objects of that type.
Compiling - ANSWER✔✔-The process of converting Java code into byte code that can
then be understood by the Java interpreter.
Constructor - ANSWER✔✔-Methods of a class that define how objects of that class are
created.
, Editor - ANSWER✔✔-A software program that allows a programmer to type in code.
Modern versions usually make it easy to format the code on the screen.
Instance - ANSWER✔✔-An object of a class.
Method - ANSWER✔✔-Sections of code that perform some action defined by a class.
Object - ANSWER✔✔-The basic building block of OOP, defined by classes and then
instantiated within a program to solve parts of a larger problem.
Object-Oriented Programming - ANSWER✔✔-A style of programming where a
programmer takes a large problem and breaks it down into smaller pieces using objects.
Source Code - ANSWER✔✔-The text that a programmer types into the computer and
that the Java compiler can convert into byte code.
Class Diagram - ANSWER✔✔-A visual representation of the relationships between
classes.
Comments - ANSWER✔✔-Text within source code that is ignored by the compiler and
is used to make notes about the workings of the class.
Driver Class - ANSWER✔✔-A specialized class whose only purpose is to instantiate the
initial objects of a program and start the interactions within.
Identifier - ANSWER✔✔-A name given to a variable, method, or class.
Exam 2025 Questions and Answers
Argument - ANSWER✔✔-A value that appears in a call to a method
Attributes - ANSWER✔✔-Parts of a class that contain the current state of objects of that
class. The member variables of a class.
Behaviors - ANSWER✔✔-Parts of a class that define what objects of that class can do.
The methods within a class.
Class - ANSWER✔✔-A list of specifications that define a certain type of object and can
be used to create objects of that type.
Compiling - ANSWER✔✔-The process of converting Java code into byte code that can
then be understood by the Java interpreter.
Constructor - ANSWER✔✔-Methods of a class that define how objects of that class are
created.
, Editor - ANSWER✔✔-A software program that allows a programmer to type in code.
Modern versions usually make it easy to format the code on the screen.
Instance - ANSWER✔✔-An object of a class.
Method - ANSWER✔✔-Sections of code that perform some action defined by a class.
Object - ANSWER✔✔-The basic building block of OOP, defined by classes and then
instantiated within a program to solve parts of a larger problem.
Object-Oriented Programming - ANSWER✔✔-A style of programming where a
programmer takes a large problem and breaks it down into smaller pieces using objects.
Source Code - ANSWER✔✔-The text that a programmer types into the computer and
that the Java compiler can convert into byte code.
Class Diagram - ANSWER✔✔-A visual representation of the relationships between
classes.
Comments - ANSWER✔✔-Text within source code that is ignored by the compiler and
is used to make notes about the workings of the class.
Driver Class - ANSWER✔✔-A specialized class whose only purpose is to instantiate the
initial objects of a program and start the interactions within.
Identifier - ANSWER✔✔-A name given to a variable, method, or class.