Podcast
Questions and Answers
What shape is the Turtle drawing when it moves in the sequence: Move(100), TurnRight, Move(100), TurnRight, Move(100), TurnRight, Move(100), TurnRight?
What shape is the Turtle drawing when it moves in the sequence: Move(100), TurnRight, Move(100), TurnRight, Move(100), TurnRight, Move(100), TurnRight?
- Square (correct)
- Circle
- Rectangle
- Triangle
How many sides does a rectangle have according to the text?
How many sides does a rectangle have according to the text?
- Three
- Five
- Six
- Four (correct)
What operation is necessary to make the Turtle draw a line in this programming context?
What operation is necessary to make the Turtle draw a line in this programming context?
- Turtle.TurnAround()
- Turtle.TurnLeft()
- Turtle.Show()
- Turtle.Move() (correct)
In order to draw a rectangle, how many times does the Turtle need to TurnRight after drawing each side?
In order to draw a rectangle, how many times does the Turtle need to TurnRight after drawing each side?
What will the Turtle's path look like after executing the commands: Move(100), TurnRight, Move(150), TurnRight, Move(100), TurnRight, Move(150), TurnRight?
What will the Turtle's path look like after executing the commands: Move(100), TurnRight, Move(150), TurnRight, Move(100), TurnRight, Move(150), TurnRight?
How many vertical sides does a rectangle have?
How many vertical sides does a rectangle have?
Which operation should follow after each Move() command for the Turtle to draw a complete square or rectangle?
Which operation should follow after each Move() command for the Turtle to draw a complete square or rectangle?
What happens when Turtle.Show() is called in the program according to the text?
What happens when Turtle.Show() is called in the program according to the text?
If a shape has two long horizontal sides and two short vertical sides, what shape is it likely representing?
If a shape has two long horizontal sides and two short vertical sides, what shape is it likely representing?
What should be the correct sequence of operations to draw a square using the Turtle?
What should be the correct sequence of operations to draw a square using the Turtle?
Flashcards are hidden until you start studying