Practice - 5 Tasks
Answer the questions below
1fill in blank
easyComplete the code to add a comment describing the tool change.
CNC Programming
N10 M06 T[1] ; Change to tool number 3
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing a tool number that does not match the comment.
Leaving the blank empty.
✗ Incorrect
The code changes to tool number 3, so the blank must be filled with '3'.
2fill in blank
mediumComplete the code to add a comment explaining the spindle speed.
CNC Programming
N20 S[1] M03 ; Set spindle speed to 1500 RPM clockwise
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using a spindle speed different from the comment.
Confusing spindle speed with feed rate.
✗ Incorrect
The spindle speed is set to 1500 RPM, so the blank must be '1500'.
3fill in blank
hardFix the error in the comment describing the feed rate.
CNC Programming
N30 F[1] ; Set feed rate to 500 mm/min
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using a feed rate that does not match the comment.
Leaving the feed rate blank.
✗ Incorrect
The feed rate must match the comment, which says 500 mm/min.
4fill in blank
hardFill both blanks to document the coordinate move and its comment.
CNC Programming
N40 G01 X[1] Y[2] ; Move to position X=100, Y=200
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Swapping X and Y values.
Using values not matching the comment.
✗ Incorrect
The code moves to X=100 and Y=200, matching the comment.
5fill in blank
hardFill all three blanks to document tool, spindle speed, and feed rate correctly.
CNC Programming
N50 M06 T[1] ; Tool change to tool 3 N60 S[2] M03 ; Spindle speed 1200 RPM N70 F[3] ; Feed rate 600 mm/min
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing up tool numbers.
Using wrong spindle speed or feed rate values.
✗ Incorrect
Tool change to tool 3, spindle speed 1200 RPM, feed rate 600 mm/min as per comments.