Q.

For a given array, there can be multiple ways to reach the end of the array using minimum number of jumps.

A. true
B. false
Answer» A. true
Explanation: consider the array {1,2,3,4,5}. it is possible to reach the end in the following ways: {1 -> 2 -> 3 -> 5} or {1 -> 2 -> 4 -> 5}.
4k
0
Do you find this helpful?
63

Discussion

No comments yet

Related MCQs