0
0
Solidworksbi_tool~10 mins

Why sketching is the foundation in Solidworks - Test Your Understanding

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to create a basic 2D sketch line in SolidWorks.

Solidworks
CreateLine([1], 0, 10, 0)
Drag options to blanks, or click blank then click option'
A0
B10
C5
D15
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing a non-zero start coordinate causes the line to start away from origin.
2fill in blank
medium

Complete the code to set the length of the sketch line to 20 units.

Solidworks
SetLineLength(line1, [1])
Drag options to blanks, or click blank then click option'
A15
B10
C25
D20
Attempts:
3 left
💡 Hint
Common Mistakes
Using a length less than required results in a shorter line.
3fill in blank
hard

Fix the error in the code to fully constrain the sketch line horizontally.

Solidworks
AddConstraint(line1, [1])
Drag options to blanks, or click blank then click option'
APerpendicular
BHorizontal
CParallel
DVertical
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'Vertical' constraint locks the line vertically, which is incorrect.
4fill in blank
hard

Fill both blanks to define a rectangle sketch with width 30 and height 20.

Solidworks
CreateRectangle(width=[1], height=[2])
Drag options to blanks, or click blank then click option'
A30
B20
C25
D15
Attempts:
3 left
💡 Hint
Common Mistakes
Swapping width and height values causes incorrect rectangle dimensions.
5fill in blank
hard

Fill all three blanks to fully define a circle sketch with center at (10, 15) and radius 5.

Solidworks
CreateCircle(centerX=[1], centerY=[2], radius=[3])
Drag options to blanks, or click blank then click option'
A10
B15
C5
D20
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing up center coordinates or radius leads to wrong circle placement or size.