1.

Consider the following code snippet to find the smallest element in an array: Which of the following lines should be inserted to complete the above code?

A. arr[i] > min_element
B. arr[i] < min_element
C. arr[i] == min_element
D. arr[i] != min_elementView Answer
Answer» C. arr[i] == min_element


Discussion

No Comment Found