Practice - 5 Tasks
Answer the questions below
1fill in blank
easyComplete the code to set the work coordinate system to G54.
CNC Programming
G[1] Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using G55 or other numbers instead of G54.
Forgetting the G before the number.
✗ Incorrect
G54 is the standard code to select the first work coordinate system in CNC programming.
2fill in blank
mediumComplete the code to move the tool to the origin of the current WCS using absolute positioning.
CNC Programming
G90 G0 X[1] Y0 Z0 Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using non-zero values for the origin.
Confusing absolute (G90) with incremental positioning (G91).
✗ Incorrect
X0 Y0 Z0 moves the tool to the origin point of the current work coordinate system using absolute positioning (G90).
3fill in blank
hardFix the error in the code to correctly select the third work coordinate system.
CNC Programming
G[1] Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using G53 which is machine coordinates, not WCS.
Using G55 which is the second WCS.
✗ Incorrect
G56 selects the third work coordinate system; G53 is machine coordinate system, G54 and G55 are first and second WCS.
4fill in blank
hardFill both blanks to create a code that sets the WCS to G57 and moves the tool to X10 in absolute mode.
CNC Programming
G[1] G90 G0 X[2]
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using wrong WCS code like G54 or G55.
Using wrong X coordinate values.
✗ Incorrect
G57 selects the fourth WCS, G90 sets absolute positioning, and X10 moves the tool to X=10 in that coordinate system.
5fill in blank
hardFill all three blanks to write a code that selects G58, uses incremental positioning, and moves the tool 5 units in Y axis.
CNC Programming
G[1] G[2] G0 Y[3]
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using G90 instead of G91 for incremental moves.
Using wrong WCS like G57 or G59.
✗ Incorrect
G58 selects the fifth WCS, G91 sets incremental positioning, and Y5 moves the tool 5 units relative to current position.
