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 a double-valued argument and produces a long-valued result?

A - DoubleToLongFunction

B - DoubleUnaryOperator

C - Function<T,R>

D - IntBinaryOperator

Answer : A

Explanation

DoubleToLongFunction functional interface represents a function that accepts a double-valued argument and produces a long-valued result.

Q 4 - Which of the following functional interface represents an operation on a single int-valued operand that produces an int-valued result?

A - IntToDoubleFunction

B - IntToLongFunction

C - IntUnaryOperator

D - LongBinaryOperator

Answer : C

Explanation

IntUnaryOperator functional interface represents an operation on a single int-valued operand that produces an int-valued result.

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

A - ObjIntConsumer<T>

B - ObjLongConsumer<T>

C - Predicate<T>

D - Supplier<T>

Answer : B

Explanation

ObjLongConsumer<T> functional interface represents an operation that accepts an object-valued and a long-valued argument, and returns no result.

Answer : C

Explanation

Both of the above options are correct.

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 method of Base64 class returns a Base64.Decoder that decodes using the URL and Filename safe type base64 encoding scheme?

A - getUrlDecoder()

B - getUrlEncoder()

C - getMimeDecoder()

D - getMimeEncoder

Answer : A

Explanation

getUrlDecoder() method of Base64 class returns a Base64.Decoder that decodes using the URL and Filename safe type base64 encoding scheme.

Q 9 - A stream provides a set of elements of specific type in a sequential manner.

A - true

B - false

Answer : A

Explanation

A stream provides a set of elements of specific type in a sequential manner. A stream gets/computes elements on demand. It never stores the elements.

Q 10 - Optional.ofNullable method allows passed parameter to be null.

A - true

B - false

Answer : A

Explanation

Optional.ofNullable method allows passed parameter to be null.

java8_questions_answers.htm
Advertisements