

InterviewSolution
Saved Bookmarks
1. |
Which of the following functions does not accept any arguments?(a) position(b) fillcolor(c) goto(d) setheading() |
Answer» Correct option is (a) position Best explanation: The functions fillcolor(), goto() and setheading() accept arguments, whereas the function position() does not accept any arguments. The function position() returns the current position of the turtle. |
|