Java Operators

Java Control Statements

Object Oriented Programming

Java Built-in Classes

Java File Handling

Java Error & Exceptions

Java Multithreading

Java Synchronization

Java Networking

Java Collections

Java Interfaces

Java Data Structures

Java Collections Algorithms

Advanced Java

Java Miscellaneous

Java APIs & Frameworks

Java Class References

Java Useful Resources

Java 8 Online Quiz



Following quiz provides Multiple Choice Questions (MCQs) related to Java 8. You will have to read all the given answers and click over the correct answer. If you are not sure about the answer then you can check the answer using Show Answer button. You can use Next Quiz button to check new set of questions in the quiz.

Questions and Answers

Q 2 - Which of the following functional interface represents an operation that accepts a single input argument and returns no result?

A - BooleanSupplier

B - Consumer<T>

C - DoubleBinaryOperator

D - DoubleConsumer

Answer : B

Explanation

Consumer<T> functional interface represents an operation that accepts a single input argument and returns no result.

Q 3 - Which of the following functional interface represents a function that accepts an int-valued argument and produces a double-valued result?

A - IntToDoubleFunction

B - IntToLongFunction

C - IntUnaryOperator

D - LongBinaryOperator

Answer : A

Explanation

IntPredicate functional interface represents a function that accepts an int-valued argument and produces a double-valued result.

Q 4 - Which of the following functional interface represents an operation that accepts a single long-valued argument and returns no result?

A - LongConsumer

B - LongFunction<R>

C - LongPredicate

D - LongSupplier

Answer : A

Explanation

LongConsumer functional interface represents an operation that accepts a single long-valued argument and returns no result.

Q 5 - Which of the following functional interface represents a function that accepts two arguments and produces a double-valued result?

A - ToDoubleBiFunction<T,U>

B - ToDoubleFunction<T>

C - ToIntBiFunction<T,U>

D - ToIntFunction<T>

Answer : A

Explanation

ToDoubleBiFunction<T,U> functional interface represents a function that accepts two arguments and produces a double-valued result.

Answer : A

Explanation

Using super keyword along with interface name.

Q 7 - Which of the following API represents a specialized date-time API to deal with various timezones in java8?

A - Local

B - Zoned

C - Both of the above.

D - None of the above.

Answer : B

Explanation

Zoned − Specialized date-time API to deal with various timezones.

Q 8 - Which of the following is the correct lambda expression which add two numbers and return their sum?

A - (int a, int b) -> { return a + b;};

B - (a, b) -> {return a + b;};

C - Both of the above.

D - None of the above.

Answer : C

Explanation

Both of the above options are correct.

Q 9 - Stream takes Collections, Arrays, or I/O resources as input source.

A - true

B - false

Answer : A

Explanation

Stream takes Collections, Arrays, or I/O resources as input source.

Q 10 - Optional.orElse method returns the value if present otherwise returns the default value passed.

A - false

B - true

Answer : B

Explanation

Optional.orElse method returns the value if present otherwise returns the default value passed.

java8_questions_answers.htm
Advertisements