Assign additional meaning to a method or operator.
What is overloading?
Method decomposition is accomplished by this.
All IF statements need this.
What is the conditional boolean statement?
This is used to copy part of a particular string.
What is String substring(int offset, int endindex)?
No base case will cause this.
What is infinite recursion?
This changes the definition of an inherited method to suit the subclass.
What is overriding?
What is Math.pow()?
True or false: If statements are supposed to have Else statements to complete the logic loop.
False
True or false: String substring must always have 2 parameters.
False.
This is a fast sort that uses recursion.
What is Quick Sort?
These are the 3 primary boolean operators.
What are AND, OR, and NOT?
Java's built-in functionality for determining the distance from zero on a number line.
What is Math.abs()?
What is a Switch statement?
String.length() returns this type of primitive data type.
What is int?
This sort combines two subfiles.
What is Merge Sort?
A user-created data type listing all possible values.
What is an enumerated type?
This method returns a value from zero to one, not including one.
What is random()?
This loop statement starts with a conditional expression.
What is a While loop?
This is the operation to combine two strings.
What is concatenation?
True or false: for some problems or algorithms, recursion is always necessary.
False.
A programmer's favorite activity - NOT!
What is debugging?
Methods of this class read input.
What is Scanner?
This looping statement ends with a conditional expression.
What is a Do-While loop?
This is used to change chars in a string.
What is String replace(char oldChar, char newChar)
Recursion can be described as a method doing this.
What is a method calling itself?