Java Basic
- What are the two types of Streams offered by java 8?
-
View Hint View Answer Discuss in Forum
NA
Correct Option: C
Sequential stream and parallel stream are two types of stream provided by java.
- Which is the new method introduced in java 8 to iterate over a collection?
-
View Hint View Answer Discuss in Forum
NA
Correct Option: A
Traversing through forEach method of Iterable with anonymous class.
- What is the return type of lambda expression?
-
View Hint View Answer Discuss in Forum
NA
Correct Option: C
Lambda expression enables us to pass functionality as an argument to another method, such as what action should be taken when someone clicks a button.
- What is the purpose of BooleanSupplier function interface?
-
View Hint View Answer Discuss in Forum
NA
Correct Option: D
BooleanSupplier function interface represents supplier of Boolean-valued results.
- Which of the following is not introduced with Java 8?
-
View Hint View Answer Discuss in Forum
NA
Correct Option: C
Serialization is not introduced with Java 8. It was introduced with an earlier version of Java.