Practice - 5 Tasks
Answer the questions below
1fill in blank
easyComplete the code to select tool number 5 in the CNC program.
CNC Programming
T[1] M06 Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using the wrong tool number after 'T'.
Forgetting the 'M06' command to change the tool.
✗ Incorrect
The command 'T5 M06' selects tool number 5 and changes the tool in the CNC machine.
2fill in blank
mediumComplete the code to select tool number 12 in the CNC program.
CNC Programming
T[1] M06 Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Selecting the wrong tool number.
Omitting the 'M06' command.
✗ Incorrect
The command 'T12 M06' selects tool number 12 and changes the tool in the CNC machine.
3fill in blank
hardFix the error in the tool selection command to select tool number 3.
CNC Programming
T[1] M06 Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using leading zeros in tool numbers when not needed.
Selecting a wrong tool number.
✗ Incorrect
Tool numbers should be written without leading zeros unless required by the machine. 'T3 M06' correctly selects tool number 3.
4fill in blank
hardFill both blanks to select tool number 7 and start the spindle clockwise.
CNC Programming
T[1] M06 S[2] M03
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing up spindle speed values.
Forgetting to start the spindle with 'M03'.
✗ Incorrect
The command 'T7 M06' selects tool 7. 'S1500 M03' sets spindle speed to 1500 RPM and starts it clockwise.
5fill in blank
hardFill all three blanks to select tool 9, set spindle speed to 2000 RPM, and start the spindle clockwise.
CNC Programming
T[1] M06 S[2] M[3]
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using wrong spindle start code like 'M04' instead of 'M03'.
Incorrect tool number or spindle speed.
✗ Incorrect
The command 'T9 M06' selects tool 9. 'S2000 M03' sets spindle speed to 2000 RPM and starts the spindle clockwise.
