Loading practice questions
For any array, given that at most one element is non-zero, it is ALWAYS possible to reach the end of the array using minimum jumps.
Correct Answer: B — False
Explanation:
Consider the array {1,0,2,3,4}.
In this case, only one element is 0 but it is not possible to reach the end of the array.