The LOGO commands used to draw a circle.
REPEAT 360[RT1 FD1]
REPEAT 360[FD1 RT1]
CIRCLE RAD 5
REPEAT 360[FD1 RT360]
Which command is used by the turtle to starts drawing again,after 'PENUP'?
PU
PD
FD
SETDRAW
Which command is used to display the correct date and time in LOGO?
DATE
DATE AND TIME
DAY
None of these
What is the output of 'SETPC 17'?
Drawn in orange
Drawn in red
Drawn in peach
The _________primitive is used to divide one number from another.
DIV
DIVISION
QUOTIENT
DIVIDE
__________is not a primitive in LOGO programming language.
Which one of the LOGO command correct?
PRINT(PRODUCT 2 5 3 )
PRINT PRODUCT 2 5 3
PRINT 2*5*3
All of them
In the cause of 'PRINT' primitive,which one of the following syntax is correct?
PRINT "How are you"?
PRINT[How are You?]
PRINT (How are You?)
PRINT How are you?
Choose the appropriate command for displaying the difference between 15 and 10.
PRINT DIFFERENCE 15 10
PRINT 15-10
PRINT DIFFERENCE 15-10
both a and b
Which of the syntax is correct for REPEAT primitive?
REPEAT commands to be repeated.
REPEAT (commands to be repeated).
REPEAT {commands to be repeated}
REPEAT [commands to be repeated.]