Bird
0
0
CNC Programmingscripting~10 mins

Work offset setup (G54-G59) in CNC Programming - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete 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'
A56
B55
C54
D59
Attempts:
3 left
💡 Hint
Common Mistakes
Using G55 instead of G54 to select the first work offset.
Confusing G59 with the first work offset.
2fill in blank
medium

Complete 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'
A54
B55
C58
D59
Attempts:
3 left
💡 Hint
Common Mistakes
Using G58 instead of G59 for the last work offset.
Confusing G54 with the last work offset.
3fill in blank
hard

Fix 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'
A56
B53
C57
D55
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.
4fill in blank
hard

Fill 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'
A54
B55
C56
D59
Attempts:
3 left
💡 Hint
Common Mistakes
Using G55 instead of G54 for the work offset.
Using G00 instead of G01 for the move command.
5fill in blank
hard

Fill 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'
A58
B100
C-5
D57
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.