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
Get step-by-step solutions from verified subject matter experts
