Computer Science, asked by kajalkumari04237, 1 month ago

Fill in the blanks-

i). ………..command is used to move turtle without draw a line.

ii). ……………. command is used to repeat the commands “N” number of times.

iii). …………….. command is used to hide the turtle.

iv). ……………… command is used to show the turtle after hiding.

v). By default, the turtle is the ………… condition.​

Answers

Answered by shekhaashif1234
1

Answer:

  1. PENUP or PU
  2. multiple
  3. HT
  4. pendown
  5. geometry

Answered by anindyaadhikari13
1

Answer:

  1. PE/PENUP command is used to move turtle without drawing a line.
  2. REPEAT command is used to repeat the commands N times.
  3. HT/HIDETURTLE command is used to hide the turtle.
  4. ST/SHOWTURTLE command is used to show the turtle after hiding.
  5. By default, the turtle is in the shown condition.

Explanation:

  • The PE or PENUP command is used to lift the pen up. Syntax: PE <Enter> or PENUP <Enter>. After executing the above statement, the turtle will not draw anything. To put down the pen back, the PD or PENDOWN command is used.
  • The REPEAT command is used to repeat a set of statements N times. Sometimes it is necessary to write same commands again and again. In that case, we can use REPEAT command which can save both time and number of lines.
  • To hide the turtle, the HT or HIDETURTLE command is used.
  • To show the turtle again, the ST or SHOWTURTLE command is used.
  • By default, we can see the turtle. To hide it, we can use HT command.

•••♪

Similar questions