Login
Remember
Register
Ask a Question
Recent questions in JAVA
0
votes
1
answer
Stream operations in Java 8 can be divided into __________.
asked
May 31, 2022
in
JAVA
by
Robin
java-stream
0
votes
1
answer
Which of the following is a valid Stream operation type?
asked
May 31, 2022
in
JAVA
by
Robin
java-stream
0
votes
1
answer
The newly introduced Streams API is available in which package of Java 8?
asked
May 31, 2022
in
JAVA
by
Robin
java-stream
0
votes
1
answer
Which of the following functional interfaces represents a function that accepts an int-valued argument and produces a long-valued result?
asked
May 31, 2022
in
JAVA
by
Robin
functional-interface
0
votes
1
answer
The following code includes a valid Functional Interface.
asked
May 31, 2022
in
JAVA
by
Robin
functional-interface
0
votes
1
answer
A FunctionalInterface annotation (@FunctionalInterface) is necessary for making an interface a functional interface.
asked
May 31, 2022
in
JAVA
by
Robin
functional-interface
0
votes
1
answer
Which of the following functional interfaces represents an operation that accepts a single input argument and returns no result?
asked
May 31, 2022
in
JAVA
by
Robin
functional-interface
0
votes
1
answer
A functional interface acts as a target type for which of the following?
asked
May 31, 2022
in
JAVA
by
Robin
functional-interface
0
votes
1
answer
Which of the following functional interfaces represents an operation upon two long-valued operands and produces a long-valued result?
asked
May 31, 2022
in
JAVA
by
Robin
functional-interface
0
votes
1
answer
Which of the following interfaces is a functional interface?
asked
May 31, 2022
in
JAVA
by
Robin
java-function
0
votes
1
answer
Java8 Innards Interview Questions and Answers from Fresco Play
asked
May 25, 2022
in
JAVA
by
Robin
java8-innards
0
votes
1
answer
Which of the following functional interfaces represents an operation that accepts an object-valued and an int-valued argument, and returns no result?
asked
May 22, 2022
in
JAVA
by
AdilsonLima
java8
0
votes
1
answer
Lambda expressions are based on __________
asked
May 22, 2022
in
JAVA
by
AdilsonLima
java8
0
votes
1
answer
Which of the following is a valid use of lambda expressions?
asked
May 22, 2022
in
JAVA
by
AdilsonLima
java8
0
votes
1
answer
Parameter types can be inferred in Lambda expressions.
asked
May 22, 2022
in
JAVA
by
AdilsonLima
java8
0
votes
1
answer
The following lambda expression is valid. (x, y) -> return x + y
asked
May 22, 2022
in
JAVA
by
AdilsonLima
java8
0
votes
1
answer
public class Main{ public static void main(String [] args){ String name=”WelcomeJava”; Runnable r1=() -> System.out.println(name); String name1 = name.toUpperCase();
asked
May 22, 2022
in
JAVA
by
AdilsonLima
java
0
votes
1
answer
The following are valid lambda expressions, except _________.
asked
May 22, 2022
in
JAVA
by
AdilsonLima
java8
0
votes
1
answer
Object o = () -> {System.out.println(“Example”); }; Object o can be replaced with?
asked
May 22, 2022
in
JAVA
by
AdilsonLima
java8
0
votes
1
answer
Which of the following is correct about Java 8 lambda expression?
asked
May 22, 2022
in
JAVA
by
AdilsonLima
java8
+1
vote
1
answer
What are Loops in Java? What are three types of loops?
asked
Jan 20, 2022
in
JAVA
by
rajeshsharma
loops-in-java
Java-questions-answers
+1
vote
1
answer
What is data encapsulation and what’s its significance?
asked
Jan 20, 2022
in
JAVA
by
rajeshsharma
data-encapsulation
Java-questions-answers
+1
vote
1
answer
What’s the purpose of Static methods and static variables?
asked
Jan 20, 2022
in
JAVA
by
rajeshsharma
static-methods
Java-questions-answers
+1
vote
1
answer
What are the various access specifiers for Java classes?
asked
Jan 20, 2022
in
JAVA
by
rajeshsharma
access-specifiers
Java-questions-answers
+2
votes
1
answer
What is the difference between an Inner Class and a Sub-Class?
asked
Jan 20, 2022
in
JAVA
by
rajeshsharma
inner-class
Java-questions-answers
+1
vote
1
answer
What is a NullPointerException, and how do I fix it?
asked
Sep 29, 2021
in
JAVA
by
john ganales
nullpointerexception
Java-questions-answers
+1
vote
1
answer
Can the static methods be overridden?
asked
Jul 27, 2021
in
JAVA
by
SakshiSharma
static-method-overridden
Java-questions-answers
+1
vote
1
answer
Can the static methods be overloaded?
asked
Jul 27, 2021
in
JAVA
by
SakshiSharma
static-method
Java-questions-answers
+1
vote
1
answer
When can you use super keyword?
asked
Jul 27, 2021
in
JAVA
by
SakshiSharma
super-keyword
Java-questions-answers
+1
vote
1
answer
Explain the use of final keyword in variable, method and class.
asked
Jul 27, 2021
in
JAVA
by
SakshiSharma
final-keyword
Java-questions-answers
Page:
« prev
1
...
9
10
11
12
13
14
15
16
17
18
19
...
61
next »
Recent questions in JAVA
...