exam questions

Exam 1z0-829 All Questions

View all questions & answers for the 1z0-829 exam

Exam 1z0-829 topic 1 question 8 discussion

Actual exam question from Oracle's 1z0-829
Question #: 8
Topic #: 1
[All 1z0-829 Questions]

Given the code fragment:

What is the result?

  • A. 0 1 1 0
  • B. false true true Optional[NewYear]
  • C. 0 1 0 Optional[NewYear]
  • D. true true false NewYear
Show Suggested Answer Hide Answer
Suggested Answer: B 🗳️

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
Uteman
5 months, 4 weeks ago
B is the correct answer
upvoted 1 times
...
xplorerpj
6 months ago
Selected Answer: B
B is right answer
upvoted 1 times
...
minhdev
7 months, 3 weeks ago
*Match returns boolean findFirst returns Optional Result: B is correct
upvoted 1 times
...
james2033
10 months, 2 weeks ago
Selected Answer: B
package q08; import java.util.List; public class Q08 { public static void main(String[] args) { List<String> specialDays = List.of("NewYear", "Valentines", "Spring", "Labour"); System.out.print(specialDays.stream().allMatch(s -> s.equals("Labour"))); System.out.print(" " + specialDays.stream().anyMatch(s -> s.equals("Labour"))); System.out.print(" " + specialDays.stream().noneMatch(s -> s.equals("Halloween"))); System.out.print(" " + specialDays.stream().findFirst()); } } // Result: // false true true Optional[NewYear]
upvoted 1 times
...
Samps
10 months, 3 weeks ago
Selected Answer: B
B is correct
upvoted 1 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...
exam
Someone Bought Contributor Access for:
SY0-701
London, 1 minute ago