The question below uses a robot in a grid of squares. The robot is represented as a triangle, which is initially in the bottom right square of the grid and facing toward the top of the grid. The following programs are each intended to move the robot to the gray square. Program II uses the procedure GoalReached which returns true if the robot is in the gray square and returns false otherwise Program II: REPEAT UNTIL Goal Reached Program 1: IF (CAN_Move forward REPEAT 4 TIMES MOVE_FORWARD MOVE_FORWARD ROTATE_LEFT MOVE_FORWARD ROTATE_RIGHT ELSE ROTATE_LEFT) Which of the following statements is true? A. Program I correctly moves the robot to the gray square, but program II does not B. Program II correctly moves the robot to the gray square, but program I does not CX ESA.. . SI Program: SIXIR REPEAT 4 TIMES IF (CAN_MOVE forward MOVE_FORWARD MOVE_FORWARD ROTATE LEFT MOVE_FORWARD ROTATE_RIGHT ELSE ROTATE_LEFT Which of the following statements is true? A. Program I correctly moves the robot to the gray square, but program II does not B. Program II correctly moves the robot to the gray square, but program I does not C. Both program I and program I correctly move the robot to the gray square. D. Neither program I nor program II correctly moves the robot to the gray square.