Robomind Flashcards

1
Q

What is the correct command to make Robo turn right?

A

right

The command ‘right’ is used for turning Robo in a right direction.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Which command stops Robo from painting?

A

stopPainting

‘stopPainting’ is the command used to halt the painting process in RoboMind.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

The command to move Robo forward by 3 steps is _____

A

forward (3)

‘forward (3)’ instructs Robo to advance three steps.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

In RoboMind, # is used to write _____ in the code.

A

Comments

The ‘#’ symbol indicates comments in the RoboMind programming language.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Write an algorithm for Robo to pick up a beacon placed 2 steps ahead and 1 step right.

A

forward (2)
right
forward (1)
pickUp

This algorithm outlines the steps Robo must take to successfully pick up the beacon.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly