Practice - 5 Tasks
Answer the questions below
1fill in blank
easyComplete the code to set the feed rate to 150 mm/min.
CNC Programming
G01 X10 Y10 [1]150
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'S' which sets spindle speed instead of feed rate.
Using 'M' or 'G' which are for other commands.
✗ Incorrect
The letter 'F' is used to specify the feed rate in CNC programming.
2fill in blank
mediumComplete the code to move to X20 Y20 with a feed rate of 200 mm/min.
CNC Programming
G01 X20 Y20 [1]200
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing feed rate 'F' with spindle speed 'S'.
Omitting the feed rate letter.
✗ Incorrect
The 'F' word sets the feed rate, so 'F 200' sets feed rate to 200 mm/min.
3fill in blank
hardFix the error in the code to correctly specify feed rate 100 mm/min.
CNC Programming
G01 X30 Y30 [1]100
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'S' which sets spindle speed.
Not including the 'F' letter.
✗ Incorrect
Feed rate must be preceded by 'F' with a space before the number.
4fill in blank
hardFill both blanks to set feed rate to 250 mm/min and move to X40 Y40.
CNC Programming
G01 X40 Y40 [1] [2]
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'S' instead of 'F' for feed rate.
Using wrong speed value.
✗ Incorrect
The feed rate is set by 'F' followed by the number 250.
5fill in blank
hardFill all four blanks to move to X50 Y50 with feed rate 300 mm/min and spindle speed 1200 rpm.
CNC Programming
G01 X50 Y50 [1] [2] [3] [4]
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing feed rate and spindle speed letters.
Using wrong numeric values.
✗ Incorrect
Feed rate is set by 'F 300' and spindle speed by 'S 1200'.
