Examlex

Solved

What Does the Following Code Do? Assume List Is an Array

question 57

Multiple Choice

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++;


Definitions:

Related Questions