Robomind Flashcards
What is the correct command to make Robo turn right?
right
The command ‘right’ is used for turning Robo in a right direction.
Which command stops Robo from painting?
stopPainting
‘stopPainting’ is the command used to halt the painting process in RoboMind.
The command to move Robo forward by 3 steps is _____
forward (3)
‘forward (3)’ instructs Robo to advance three steps.
In RoboMind, # is used to write _____ in the code.
Comments
The ‘#’ symbol indicates comments in the RoboMind programming language.
Write an algorithm for Robo to pick up a beacon placed 2 steps ahead and 1 step right.
forward (2)
right
forward (1)
pickUp
This algorithm outlines the steps Robo must take to successfully pick up the beacon.