| 1. |
Type the following command in logo FD 40* 3 |
|
Answer» Answer: this is a command used in MSW logo. what is the command FD? FD is nothing but forward. FD is mentioned as a shortcut of forward. we need to type forward or fd and then the number of steps the turtle should move front. What happens when we give the command FD 40*3? when we give the command FD 40*3, the steps get multiplied, i.e. 40*3=120 steps and hence the turtle MOVES 120 steps forward. Extra INFO: backward: we can move the turtle backward also by giving the shortcut command bk and the number of steps. right: we can move the turtle towards right also by giving the shortcut command RT and the angle the turtle should turn right. left: we can move the turtle towards left by giving the shortcut command lt and the angle the turtle should turn left. |
|