Java Basic


  1. What are the two types of Streams offered by java 8?











  1. View Hint View Answer Discuss in Forum

    NA

    Correct Option: C

    Sequential stream and parallel stream are two types of stream provided by java.


  1. Which is the new method introduced in java 8 to iterate over a collection?











  1. View Hint View Answer Discuss in Forum

    NA

    Correct Option: A

    Traversing through forEach method of Iterable with anonymous class.



  1. What is the return type of lambda expression?











  1. 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.


  1. What is the purpose of BooleanSupplier function interface?











  1. View Hint View Answer Discuss in Forum

    NA

    Correct Option: D

    BooleanSupplier function interface represents supplier of Boolean-valued results.



  1. Which of the following is not introduced with Java 8?











  1. 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.