MCQOPTIONS
Saved Bookmarks
| 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 below code? |
| A. | arr[i] > min_element |
| B. | arr[i] < min_element |
| C. | arr[i] == min_element |
| D. | none of the mentioned |
| Answer» C. arr[i] == min_element | |