Which THREE of the following are true about the Optional class? (Choose three.)
orElseThrow with a Supplier will throw the exception if the Optional is empty.
Why this answer
Optional.of throws NPE for null; ofNullable returns empty for null; orElseThrow throws exception if empty; ifPresent does nothing for empty; get throws NoSuchElementException for empty.