Form 12: Robot Navigation & Directional Commands
Questions
-
MultiChoice
A robot is at position (0,0) facing East. Command: 'Move forward 2 steps'. Where is it?
-
MultiChoice
Robot commands: 'Move 3 steps, Turn right, Move 2 steps'. What does 'Turn right' change?
-
WordsBox
Robot navigation algorithms rely on precise directional ____ and ____
-
MultiChoice
'REPEAT 4 TIMES: [Move forward 1 step, Turn right 90 degrees]'. What shape path does robot walk?
-
MultiChoice
'IF obstacle ahead THEN turn left ELSE move forward'. Robot sees a wall. What does it do?
-
MultiChoice
To get from Start to Goal located 3 squares Right and 2 squares Up, which command works?
-
WordsBox
Using a loop in robot navigation reduces the number of movement ____ needed in ____
-
MultiChoice
If a robot turns right 90 degrees 4 times in a row, what is its final direction?
-
MultiChoice
'REPEAT UNTIL at Goal: [Move forward]'. If goal is 5 steps away, how many steps are taken?
-
MultiChoice
Robot algorithm: '1. Move forward 2. IF hole THEN jump 3. Move forward'. What prevents falling into hole?
-
MultiChoice
What happens if a navigation program omits 'Turn Right' at a corner?
-
MultiChoice
'REPEAT 3 TIMES: [Move forward 2 steps]'. Total steps moved?