Practice - 5 Tasks
Answer the questions below
1fill in blank
easyComplete the code to define a new tool in the library.
CNC Programming
TOOL [1] ; Define a new tool Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'ADD' which is not the correct command in this context.
Using 'CREATE' which is not recognized in this CNC language.
✗ Incorrect
The correct command to define a new tool in the tool library is 'DEFINE'.
2fill in blank
mediumComplete the code to set the tool diameter to 10 mm.
CNC Programming
TOOL DIAMETER [1] ; Set diameter in mm
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Setting diameter to 5 or 15 which does not match the requirement.
✗ Incorrect
The tool diameter is set to 10 mm as specified.
3fill in blank
hardFix the error in the code to correctly assign the tool length offset.
CNC Programming
TOOL LENGTH OFFSET = [1] ; Assign length offset Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using words like 'LENGTH' or 'OFFSET' instead of a number.
✗ Incorrect
The length offset should be assigned a numeric value, here 25 mm.
4fill in blank
hardFill both blanks to complete the tool library entry with tool number and type.
CNC Programming
TOOL NUMBER [1] TYPE [2] ; Define tool details
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Swapping tool number and type values.
Using invalid tool types.
✗ Incorrect
Tool number 12 and type MILL are correctly assigned.
5fill in blank
hardFill all three blanks to complete the tool setup with number, diameter, and length offset.
CNC Programming
TOOL [1] DIAMETER [2] LENGTH OFFSET [3]
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing up diameter and length offset values.
Using invalid tool numbers.
✗ Incorrect
Tool number 12, diameter 8 mm, and length offset 30 mm are correctly set.
