Practice - 5 Tasks
Answer the questions below
1fill in blank
easyComplete the code to create a circle with a specified radius.
Solidworks
Circle = CreateCircle(center, [1]) Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using diameter instead of radius
Confusing circumference with radius
✗ Incorrect
The radius defines the size of the circle from its center to the edge.
2fill in blank
mediumComplete the code to draw an arc with a given start angle.
Solidworks
Arc = CreateArc(center, radius, [1], endAngle) Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using length instead of start angle
Confusing diameter with start angle
✗ Incorrect
The startAngle specifies where the arc begins around the circle.
3fill in blank
hardFix the error in the code to correctly create a circle.
Solidworks
Circle = CreateCircle([1], radius) Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using a point on the circumference instead of the center
Confusing diameterPoint with centerPoint
✗ Incorrect
The centerPoint is required to define the circle's center.
4fill in blank
hardFill both blanks to create an arc with correct start and end angles.
Solidworks
Arc = CreateArc(center, radius, [1], [2])
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using length or width instead of angles
Swapping start and end angles
✗ Incorrect
The arc requires both startAngle and endAngle to define its span.
5fill in blank
hardFill all three blanks to create a circle and calculate its circumference.
Solidworks
circle = CreateCircle([1], [2]) circumference = 2 * [3] * PI
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using diameter instead of radius in circumference
Confusing centerPoint with radius
✗ Incorrect
You create a circle with a centerPoint and radius. The circumference formula uses the radius.