Bird
0
0
CNC Programmingscripting~10 mins

Machine axes (X, Y, Z for milling) 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 move the milling tool along the X axis to position 50.

CNC Programming
G01 [1]50 F100
Drag options to blanks, or click blank then click option'
AY
BZ
CX
DF
Attempts:
3 left
💡 Hint
Common Mistakes
Using Y or Z instead of X for horizontal movement.
Confusing feed rate (F) with axis movement.
2fill in blank
medium

Complete the code to move the tool up along the Z axis to position 10.

CNC Programming
G00 [1]10
Drag options to blanks, or click blank then click option'
AY
BF
CX
DZ
Attempts:
3 left
💡 Hint
Common Mistakes
Using X or Y instead of Z for vertical movement.
Confusing feed rate (F) with axis movement.
3fill in blank
hard

Fix the error in the code to move the tool to X=20, Y=30, Z=5.

CNC Programming
G01 X20 Y[1] Z5 F150
Drag options to blanks, or click blank then click option'
A5
B30
C20
D150
Attempts:
3 left
💡 Hint
Common Mistakes
Putting the wrong number for Y coordinate.
Mixing feed rate (F) with axis values.
4fill in blank
hard

Fill both blanks to create a command moving the tool to X=15 and Z=7.

CNC Programming
G01 [1]15 [2]7 F120
Drag options to blanks, or click blank then click option'
AX
BY
CZ
DF
Attempts:
3 left
💡 Hint
Common Mistakes
Using Y instead of X or Z.
Confusing feed rate (F) with axis letters.
5fill in blank
hard

Fill all three blanks to create a command moving the tool to X=25, Y=40, Z=10.

CNC Programming
G01 [1]25 [2]40 [3]10 F200
Drag options to blanks, or click blank then click option'
AX
BY
CZ
DF
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing up axis letters and coordinates.
Using feed rate (F) instead of axis letters.