1. Computer Science Engineering (CSE)
  2. Design and Analysis of Algorithms
  3. For a given array, there can be multiple...
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}.

Discussion