Solved

Which of the Following Statements Does NOT Return a Value

Question 62

Multiple Choice

Which of the following statements does NOT return a value of type Optional, assuming that the variable result is of type Optional<String>?


A) return result.orElse("None") ;
B) return Optional.empty() ;
C) return result;
D) return Optional.of("None") ;

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions