ObjectiveMcq
Print Protected
This page is protected for print. Use the website to view the content.
Consider the following array: {1, 3, 5, 8, 9, 2, 6, 7, 6} What is the minimum number of jumps required to reach the end of the array?
Correct Answer: C — 3
The jumps made will be:{1 -> 2 -> 4 -> 9}. So, the number of jumps is three.