Complete the code to move the milling tool along the X axis to position 50.
G01 [1]50 F100
The X axis controls horizontal movement left and right. To move to position 50 on X, use 'X50'.
Complete the code to move the tool up along the Z axis to position 10.
G00 [1]10
The Z axis controls vertical movement. To move up to position 10, use 'Z10'.
Fix the error in the code to move the tool to X=20, Y=30, Z=5.
G01 X20 Y[1] Z5 F150The Y axis value should be 30 to move to Y=30. The blank is for the Y coordinate.
Fill both blanks to create a command moving the tool to X=15 and Z=7.
G01 [1]15 [2]7 F120
X15 moves the tool to X=15, and Z7 moves it to Z=7 vertically.
Fill all three blanks to create a command moving the tool to X=25, Y=40, Z=10.
G01 [1]25 [2]40 [3]10 F200
X25 moves horizontally to 25, Y40 moves sideways to 40, and Z10 moves vertically to 10.
