Special Summer Sale 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: save70

Oracle 1z0-830 Actual Questions

Page: 3 / 6
Total 84 questions

Java SE 21 Developer Professional Questions and Answers

Question 9

Given:

java

var sList = new CopyOnWriteArrayList();

Which of the following statements is correct?

Options:

A.

The CopyOnWriteArrayList class is a thread-safe variant of ArrayList where all mutative operations are implemented by making a fresh copy of the underlying array.

B.

The CopyOnWriteArrayList class is not thread-safe and does not prevent interference amongconcurrent threads.

C.

The CopyOnWriteArrayList class’s iterator reflects all additions, removals, or changes to the list since the iterator was created.

D.

The CopyOnWriteArrayList class does not allow null elements.

E.

Element-changing operations on iterators of CopyOnWriteArrayList, such as remove, set, and add, are supported and do not throw UnsupportedOperationException.

Question 10

Given:

java

Deque deque = new ArrayDeque<>();

deque.offer(1);

deque.offer(2);

var i1 = deque.peek();

var i2 = deque.poll();

var i3 = deque.peek();

System.out.println(i1 + " " + i2 + " " + i3);

What is the output of the given code fragment?

Options:

A.

1 2 1

B.

An exception is thrown.

C.

2 2 1

D.

2 1 2

E.

1 2 2

F.

1 1 2

G.

2 1 1

Question 11

Given:

java

Stream strings = Stream.of("United", "States");

BinaryOperator operator = (s1, s2) -> s1.concat(s2.toUpperCase());

String result = strings.reduce("-", operator);

System.out.println(result);

What is the output of this code fragment?

Options:

A.

United-States

B.

United-STATES

C.

UNITED-STATES

D.

-UnitedStates

E.

-UNITEDSTATES

F.

-UnitedSTATES

G.

UnitedStates

Question 12

Which of the following doesnotexist?

Options:

A.

BooleanSupplier

B.

DoubleSupplier

C.

LongSupplier

D.

Supplier<T>

E.

BiSupplier<T, U, R>

F.

They all exist.

Page: 3 / 6
Total 84 questions