Question 71 of 76 from exam 1Z0-808: Java SE 8 Programmer I

Question 71 of 76 from exam 1Z0-808: Java SE 8 Programmer I

Question

Given the code fragment:

int numsi[] = new int [3];

int nums2[] = (1, 2, 3, 4, 5)i

nums1 = nums2;

for (int x : nums1)¢
System.out.print (x + "2";

What is the result?

Answers

Explanations

Click on the arrows to vote for the correct answer

A. B. C. D.

A.