Question: Question 9 What does the following code do? Assume list is an array of int values, temp is some previously initialized int value, and c
Question 9
What does the following code do? Assume "list" is an array of int values, "temp" is some previously initialized int value, and "c" is an int initialized to 0.
for (int j=0; j < list.length; j++)
if (list[j] < temp) c++;
|
| A. | It finds the largest value and stores it in temp. |
|
| B. | It sorts the values in list to be in ascending order. |
|
| C. | It finds the smallest value and stores it in temp. |
|
| D. | It counts the number of elements in list that are less than temp. |
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
