Practice - 5 Tasks
Answer the questions below
1fill in blank
easyComplete the code to select the first work offset in a CNC program.
CNC Programming
G[1] Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using G55 instead of G54 to select the first work offset.
Confusing G59 with the first work offset.
✗ Incorrect
G54 is the standard code to select the first work offset in CNC programming.
2fill in blank
mediumComplete the code to select the last standard work offset in a CNC program.
CNC Programming
G[1] Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using G58 instead of G59 for the last work offset.
Confusing G54 with the last work offset.
✗ Incorrect
G59 is the code used to select the last standard work offset in CNC programming.
3fill in blank
hardFix the error in the code to correctly select the third work offset.
CNC Programming
G[1] Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using G55 or G57 instead of G56 for the third work offset.
Using G53 which is a machine coordinate system, not a work offset.
✗ Incorrect
G56 is the correct code to select the third work offset (G54=1st, G55=2nd, G56=3rd).
4fill in blank
hardFill in the blank to select the first work offset and move to X10 Y20.
CNC Programming
G[1]
G01 X10 Y20 Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using G55 instead of G54 for the work offset.
Using G00 instead of G01 for the move command.
✗ Incorrect
First select G54 (the first work offset), then move to X10 Y20 with G01.
5fill in blank
hardFill all three blanks to select work offset, set feed rate, and move to Z-5.
CNC Programming
G[1] F[2] G01 Z[3]
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using G58 instead of G57 for the work offset.
Setting feed rate to an invalid value.
Forgetting the negative sign for Z-5.
✗ Incorrect
G57 selects the fourth work offset, F100 sets the feed rate to 100 units/min, and G01 moves the tool linearly to Z-5.
