This document presents a complete glossary of over 50 essential Java programming terms and definitions, curated for Intro to Java Programming (CS101) students in the 2025/2026 academic year. Designed in a Q&A-based vocabulary format, each term is paired with a correct, exam-verified answer that defines its usage, behavior, and purpose in Java.
Focused on clarity and conceptual grounding, this vocabulary sheet is ideal for first-year Computer Science, Software Engineering, and IT students, as well as learners preparing for entry-level Java exams or technical interviews. It covers foundational topics including Java syntax, object-oriented programming, data types, keywords, access control, memory management, and method structure.
Each definition is accurately worded and follows current academic and industry terminology standards, making this resource suitable for academic revision and professional certification preparation.
Core topics include:
Java Syntax & Structure: class, method, main, constructor, return, void, new, import
OOP Principles: class vs object, instance variable, field, encapsulation (private, public)
Java Keywords: if, int, boolean, double, private, public, static, void, return
Data Types: primitive vs object types, int, double, boolean, char
Method Parameters: use, scope, declaration, and behavior
Program Logic & Flow: conditional logic with if, object creation, method calls
Comments & Documentation: //, /*...*/, role in code clarity and debugging
Compiler & Execution: role of compiler, bytecode, use of IDEs and JVM (implicitly described)
String Operations: concatenation with +, joining data types and strings
Access Modifiers: visibility and scope control using private, public
This resource is perfect for:
CS101 and AP Computer Science A students
New Java learners needing to memorize core terms
Tutors preparing oral quizzes, flashcards, or intro-level worksheets
Java certification candidates reviewing terminology
Self-learners looking to solidify basic Java knowledge before coding projects
Its straightforward design ensures maximum comprehension and memory retention, serving as an excellent reference throughout a Java programming course or bootcamp.
Keywords:
Java vocabulary, Java definitions, Java keywords, Java boolean, Java class, Java object, Java constructor, Java public private, Java primitive types, Java field, Java parameter, Java import, Java return, Java static, CS101 Java glossary
Content preview
Java Vocabulary 2025/2026 Exam
Questions and Answers | A+ Score
Assured
boolean - 🧠ANSWER ✔✔Refers to an expression or variable that can have
only a true or false value.
Class - 🧠ANSWER ✔✔A class definition defines instance and class
variables and methods, as well as specifying the interfaces the class
implements and the immediate superclass of the class. A class name
always starts with a capital letter.
Comments - 🧠ANSWER ✔✔Explanatory text that is ignored by the
compiler. In programs written in the Java programming language,
comments are delimited using // or /* ...*/
, Compiler - 🧠ANSWER ✔✔A program to translate source code into code to
be executed by a computer. The Java compiler translates source code
written in the Java programming language into bytecode for the Java virtual
machine.
Concatenation - 🧠ANSWER ✔✔The actual meaning is 'to link together'.
Concatenating Strings means to join different Strings together to form a
new String. Using an empty String, denoted by "", will convert a number to
a String so it can be displayed. The symbol used to join Strings is the +
sign.
Constructor - 🧠ANSWER ✔✔A piece of code that creates an object. In the
Java programming language, constructors have the same name as their
class and also start with a capital letter. Constructors are invoked using the
new keyword. There can be more than one constructor to a class.
double - 🧠ANSWER ✔✔a data type used to denote a number with a
decimal place e.g 2.15
field - 🧠ANSWER ✔✔A data member of a class. Also known as an instance
variable. They are always declared private.