MCQOPTIONS
Saved Bookmarks
| 1. |
Consider the following naive method to find the maximum sub-array sum: Which line should be inserted to complete the above code? |
| A. | tmp_max = cur_max |
| B. | break |
| C. | continue |
| D. | cur_max = tmp_maxView Answer |
| Answer» E. | |