As opposed to String, int, double and boolean are known as these data types.
What is primitive?
This data type stores the values true or false.
What is boolean?
Your CSA teacher's first name.
What is Sarah?
This "blueprint" defines a type and is used to define what all objects of that type can do.
What is a class?
Where execution starts in a Java program.
What is the main method?
This commonly used data type are objects of a class, used for storing sequences of characters.
What is a String?
Often called modulo, the correct name for the % operator in Java is...
What is remainder operator?
A loop that never ends.
What is an infinite loop?
Defines behavior - what an object can do.
What is a method?
Another term for a compile time error.
What is a syntax error?
A name associated with a memory location in a computer, where you can store a value.
What is a variable?
This law describes how to distribute negation over a complex conditional.
What is DeMorgan's?
A loop that repeats while a Boolean expression is true.
What is a while loop?
A named block of code used to initialize fields in a newly created object.
What is a constructor?
Private instance variables define the ____of an object of a certain class.
What is attributes?
This static method of the math class returns a value between 0 and 0.9999999999......
What is Math.random()?
What are relational operators?
A loop that has a header with 3 optional parts: initialization, condition, and change
What is a "for loop"
Software that translates the Java source code (ends in .java) into the Java class file (ends in .class).
What is a compiler?
This term describes where a variables value can be accessed.
What is scope?
Integer and Double are examples of what type of class?
What are Wrapper classes?
This phrase describes the fact that if the first part of an AND conditional is false, the second part is not checked.
What is short circuit evaluation?
A run-time error that occurs when you try to access past the end of a string or list in a loop.
What is an out-of-bounds error?
A keyword that can be used to distinguish the object currently running the code from other objects of that class.
What is "this"
If a variable or method belongs to the class, rather than individual objects of that class, they are declared using the keyword _____.
What is static?