MCQOPTIONS
Saved Bookmarks
| 1. |
Consider the following iterative code snippet to find the largest element: Which of the following lines should be inserted to complete the above code? |
| A. | arr[i] > max_element |
| B. | arr[i] < max_element |
| C. | arr[i] == max_element |
| D. | arr[i] != max_elementView Answer |
| Answer» B. arr[i] < max_element | |