Peer Instruction: Turtles Multiple Choice QuestionsΒΆ
- Draw nothing
- Try again. We need to draw something to start. And a flat line will be the base case in our recursive function.
- Draw a line
- Correct! A flat line will be the base case in our recursive function.
- Draw a triangle
- Try again. What does a triangle consist of? A flat line right?
- Draw a line with a pointy bit
- Try again. No pointy bit is necessary here. A flat line will be the base case in our recursive function.
- I don't know
- Try again. A flat line will be the base case in our recursive function.
csp-10-3-1: What is the base case to create a snowflake through a recursive function?
- 1/3 w
- Try again. we trisect the flat line, and inserting into the middle portion two lines joined at an acute angle. The length of each of the new lines is 1/3 of the total length of order. Therefore, the rest of line should be 2/3 width.
- 1/2 w
- Try again. we trisect the flat line, and inserting into the middle portion two lines joined at an acute angle. The length of each of the new lines is 1/3 of the total length of order. Therefore, the rest of line should be 2/3 width.
- 2/3 w
- Correct! The length of each of the new lines is 1/3 of the total length of order. Therefore, the rest of line should be 2/3 width.
- w
- Try again. we trisect the flat line, and inserting into the middle portion two lines joined at an acute angle. The length of each of the new lines is 1/3 of the total length of order. Therefore, the rest of line should be 2/3 width.
- I don't know
- Try again. we trisect the flat line, and inserting into the middle portion two lines joined at an acute angle. The length of each of the new lines is 1/3 of the total length of order. Therefore, the rest of line should be 2/3 width.
csp-10-3-2: How long will my line be in of width?
- 1
- Try again. The new pattern draws an equilateral triangle on each middle part of the original triangle. And each part of the original triantgle is split into 4 parts.
- 3
- Try again. The new pattern draws an equilateral triangle on each middle part of the original triangle. And each part of the original triantgle is split into 4 parts.
- 4
- Correct! Each part of the original triantgle is split into 4 parts.
- 12
- Try again. The new pattern draws an equilateral triangle on each middle part of the original triangle. And each part of the original triantgle is split into 4 parts.
- I don't know
- Try again. The new pattern draws an equilateral triangle on each middle part of the original triangle. And each part of the original triantgle is split into 4 parts.
csp-10-3-3: How many times will I call snowflake when I recur?
- 1/6
- Try again. we trisect the flat line, and inserting into the middle portion two lines joined at an acute angle. The length of each of the new lines is 1/3 of the total length of order.
- 1/4
- Try again. we trisect the flat line, and inserting into the middle portion two lines joined at an acute angle. The length of each of the new lines is 1/3 of the total length of order.
- 1/3
- Correct! The length of each of the new lines is 1/3 of the total length of order.
- 1/2
- Try again. we trisect the flat line, and inserting into the middle portion two lines joined at an acute angle. The length of each of the new lines is 1/3 of the total length of order.
- I don't know
- Try again. we trisect the flat line, and inserting into the middle portion two lines joined at an acute angle. The length of each of the new lines is 1/3 of the total length of order.
csp-10-3-4: How long will each new segment be in terms of the original line?
- 60, 60, 60
- Try again. The new pattern draws an equilateral triangle on each middle part of the original triangle. The angle of rotation is the angle or the supplementary angle of equilateral triangle.
- 60, 30, 60
- Try again. The new pattern draws an equilateral triangle on each middle part of the original triangle. The angle of rotation is the angle or the supplementary angle of equilateral triangle.
- 60, 240, 60
- Correct! The angle of rotation is the angle or the supplementary angle of equilateral triangle.
- 120, 240, 120
- Try again. The new pattern draws an equilateral triangle on each middle part of the original triangle.The angle of rotation is the angle or the supplementary angle of equilateral triangle.
- I don't know
- Try again. The new pattern draws an equilateral triangle on each middle part of the original triangle.The angle of rotation is the angle or the supplementary angle of equilateral triangle.
csp-10-3-5: How much will I rotate?
You have attempted of activities on this page