Java Terms UPDATED ACTUAL Exam Questions and CORRECT
Answers
modifier methods (setters) - these are used to set or change the value of a variable (usually
private) in the object
modulus - an arithmetic operation, indicated by the % sign, that outputs the remainder of a
division
boolean - a primitive data type that stores one of two possible values: true or false
conditional - a boolean expression, often used in loops and if statements
break - a statement that causes Java to exit the current loop and continue with the next line of the
program
continue - a statement that causes Java to exit the current iteration of the loop and go on to the
next iteration
logical operators - symbols used to build more complex boolean expressions
increment/decrement - to increase or decrease a value by a given amount
wrapper class - a class associated with each primitive data type that provides useful methods for
working with that type
parse - to read data piece by piece so you can store and manipulate the pieces
delimeter - a character or set of characters used to separate one piece of data from another
Answers
modifier methods (setters) - these are used to set or change the value of a variable (usually
private) in the object
modulus - an arithmetic operation, indicated by the % sign, that outputs the remainder of a
division
boolean - a primitive data type that stores one of two possible values: true or false
conditional - a boolean expression, often used in loops and if statements
break - a statement that causes Java to exit the current loop and continue with the next line of the
program
continue - a statement that causes Java to exit the current iteration of the loop and go on to the
next iteration
logical operators - symbols used to build more complex boolean expressions
increment/decrement - to increase or decrease a value by a given amount
wrapper class - a class associated with each primitive data type that provides useful methods for
working with that type
parse - to read data piece by piece so you can store and manipulate the pieces
delimeter - a character or set of characters used to separate one piece of data from another