Problem Solution Max distance that we can move at a time is 2. Look at the index value larger than current position by 2. If the value is 0, move 2 times and add a jump. If the value is 1, move just one time and add a jump. (If we are at a position where only one number is left in the array, it is not possible to move up 2 times... so just add one jump and end the loop.) import java.io.*; import..