Practice - 5 Tasks
Answer the questions below
1fill in blank
easyComplete the code to move the tool rapidly to X10 Y20.
CNC Programming
G00 X[1] Y20 Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using the wrong coordinate value for X.
Confusing X and Y values.
✗ Incorrect
The G00 command moves the tool rapidly to the specified coordinates. Here, X should be 10 to move to X10 Y20.
2fill in blank
mediumComplete the code to rapidly move the tool to Y50.
CNC Programming
G00 Y[1] Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using a wrong Y coordinate value.
Forgetting to include the G00 command.
✗ Incorrect
The G00 command moves the tool rapidly to the specified Y coordinate. Here, Y should be 50.
3fill in blank
hardFix the error in the code to rapidly move to X25 Y35.
CNC Programming
G00 X[1] Y35 Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using a wrong X coordinate value.
Mixing up X and Y values.
✗ Incorrect
The X coordinate should be 25 to move to X25 Y35 rapidly.
4fill in blank
hardFill both blanks to rapidly move the tool to X15 Y45.
CNC Programming
G00 X[1] Y[2]
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Swapping X and Y values.
Using incorrect coordinate values.
✗ Incorrect
The tool should move rapidly to X15 and Y45, so the blanks must be filled with 15 and 45 respectively.
5fill in blank
hardFill all three blanks to rapidly move the tool to X5 Y10 Z-3.
CNC Programming
G00 X[1] Y[2] Z[3]
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using positive value for Z instead of negative.
Mixing up coordinate order.
✗ Incorrect
The tool moves rapidly to X5, Y10, and Z-3, so the blanks must be filled with 5, 10, and -3 respectively.
