exam questions

Exam 1z0-819 All Questions

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

Exam 1z0-819 topic 1 question 140 discussion

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

Given the code fragment:



Which can replace line 11?

  • A. UnaryOperator uo = (var x) -> (x * 3);
  • B. UnaryOperator uo = (int x) -> x * 3;
  • C. UnaryOperator uo = var x -> ( return x * 3; );
  • D. UnaryOperator uo = x -> ( return x * 3);
Show Suggested Answer Hide Answer
Suggested Answer: A 🗳️

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
ASPushkin
3 months, 2 weeks ago
Selected Answer: A
raw type UnaryOperator uo = (var x)->(x*3); is actually UnaryOperator<Object> we have : x*3 Object*3 - error A. is Ok B. UnaryOperator uo = (int x)->(x*3); MyClass.java:9: error: incompatible types: incompatible parameter types in lambda expression UnaryOperator<Integer> uo = (int x)->(x*3); C. UnaryOperator<Integer> uo = var x->(return x*3); Fail skip parentheses D UnaryOperator<Integer> uo = x->{return x*3;}; Fail terminator(;) is missing
upvoted 1 times
...
d7bb0b2
6 months, 1 week ago
Selected Answer: A
a IS CORRECT; B is incorrect (primitives types cannot pass to lambda as parameter ONLY wrapper type) C bad sintax D bad sintax if return then { ; } must be
upvoted 1 times
...
Omnisumem
9 months, 1 week ago
Selected Answer: A
Tested: A is closest.
upvoted 2 times
...
Stavok
12 months ago
Selected Answer: A
A is close to correct
upvoted 2 times
...
KiraguJohn
1 year ago
A is valid if it looks like this UnaryOperator<Integer> uo = (var x) -> (x * 3);
upvoted 3 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