Practice - 5 Tasks
Answer the questions below
1fill in blank
easyComplete the code to activate the tool length offset using G43.
CNC Programming
G[1] H01 Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using G40 which cancels tool radius compensation instead of length offset.
Using G41 or G42 which are for tool radius compensation, not length offset.
✗ Incorrect
G43 is the standard G-code command to apply the tool length offset in CNC programming.
2fill in blank
mediumComplete the code to specify the tool length offset number 3.
CNC Programming
G43 H[1] Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using the wrong offset number that does not match the tool in use.
Omitting the H code which is required after G43.
✗ Incorrect
The H number after G43 specifies which tool length offset to apply. Here, H3 means offset number 3.
3fill in blank
hardFix the error in the code to correctly apply tool length offset 2.
CNC Programming
G[1] H2 Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using G42 which is for tool radius compensation right.
Using G44 which is for tool length offset negative.
✗ Incorrect
G43 is the correct command for tool length offset. Other codes are incorrect or used for different functions.
4fill in blank
hardFill both blanks to apply tool length offset 5 and move the tool to Z position 50.
CNC Programming
G[1] H[2] Z50
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing up G44 which applies negative tool length offset.
Using the wrong H number that does not match the tool.
✗ Incorrect
G43 activates the tool length offset, and H5 selects offset number 5. Z50 moves the tool to position 50 on the Z axis.
5fill in blank
hardFill all three blanks to apply tool length offset 1, move to X=100, and retract to Z=150.
CNC Programming
G[1] H[2] X[3] Z150
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using G44 instead of G43 for tool length offset.
Forgetting to specify the H number after G43.
✗ Incorrect
G43 activates the tool length offset, H1 selects offset 1, and X100 moves the tool to X position 100 before retracting to Z150.
