

MCQOPTIONS
Saved Bookmarks
1. |
What is the output of the functions shown below? import turtle t=turtle.Pen() for i in range(0,3): t.forward(100) t.left(120) t.back(100) for i in range(0,3): t.forward(100) t.left(120) |
A. | Error |
B. | Two triangles, joined by a straight line |
C. | Two triangles, joined at one vertex |
D. | Two separate triangles, not connected by a line |
Answer» D. Two separate triangles, not connected by a line | |