InterviewSolution
Saved Bookmarks
| 1. |
Which of the following is not introduced with Java 8?(a) Stream API(b) Serialization(c) Spliterator(d) Lambda ExpressionThis question was addressed to me at a job interview.My question is taken from Java 8 Features topic in section Autoboxing & Miscellaneous of Java |
|
Answer» RIGHT option is (b) SERIALIZATION The EXPLANATION: Serialization is not introduced with Java 8. It was introduced with an EARLIER version of Java. |
|