Boolean Logic
NOT (TRUE OR FALSE)
What is FALSE?
Given an array arr[] of ints {3, 5, 4, 7}, what value is in arr[2]?
What is 4?
The two arguments in substring (int i, int j) represent
What are the starting index and the ending index?
When a program includes an OR statement and the first input is true, or when it includes an AND statement and the first input is false, this happens, preventing the second statement's evaluation.
What is short-circuiting?
"abcdefgh".substring(2) + "hgfedcba".substring(5)
What is "cdefghcba"?
A cat ____ an animal, A cat ____ a color
What are Is-a and Has-a?