What data type stores true or false values?
What is boolean
What keyword checks if a condition is true?
What is if
What is a template from which objects are built?
a class
What is an error within code that causes an unexpected output?
logic error
What indicates a value that will be used after the method has completed?
return keyword
What is a 32-bit data type for whole numbers?
What is Integer
What statement ends a loop?
What is Break
What is the creating of a class which uses properties and methods from a parent class?
inheritance
What attempts to run a block of code?
try block
What is constructing a method with the same name multiple times with different parameters?
What is method overloading
What data type can store a single character?
What is Char
What is the purpose of the "else" statement?
What runs if no conditions within the if statement are true
What hides a private variable within a class?
encapsulation
What runs if the try block fails?
catch block
What is a variable used in conjunction with a method declaration?
What is a parameter in a method
What is a type of variable that serves as a container that stores mulitple items
What is Array
What type of loop runs while a condition is true?
What is a While loop
What creates an object instance of the class?
constructor
What defines types of exceptions that can occur?
exception class
What indicates that a function does not return a value?
What is a void method
What data type holds decimal numbers?
What is Double
What allows for checking multiple conditions?
What is a switch statement
What is an occurrence of a class?
instance
What runs no matter whether a try block is successful or a catch block runs?
this is what "finally" does in error handling
What is the first method to run in a Java file?
the main method