Name the De Morgan Laws.
not (A or B) = (not A) and (not B)
not (A and B) = (not A) or (not B)
What does ! symbolize?
not
What does name.substring(#, #) do?
Gives the part of the string starting from index # and excluding index #.
What does name.substring(#) do?
Returns the part of the string starting from index #.
How does compareTo work?
What does String.valueOf() do?
Converts int to String
What does Integer.parseInt(“#”) do?
Converts the string to integer