Question: If data is an int array, then which of the following will correctly assign the value 42 to each element in the array? Group of

If data is an int array, then which of the following will correctly assign the value 42 to each element in the array?

Group of answer choices

A. for (int i = 0; i < data.length; i++) { data[i] = 42; }
B. for (int i : data) { data[i] = 42; }
C. for (int n : data) { n = 42; }
D. data[] = 42

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!