Practice - 5 Tasks
Answer the questions below
1fill in blank
easyComplete the code to define the program number.
CNC Programming
O[1] (Start of program) Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using G-codes or M-codes instead of a numeric program number.
Using sequence numbers instead of program number.
✗ Incorrect
The program number starts with 'O' followed by the program number like 1001.
2fill in blank
mediumComplete the code to write a sequence number.
CNC Programming
N[1] G01 X10 Y10 Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using G-codes or M-codes as sequence numbers.
Using program number format instead of sequence number.
✗ Incorrect
Sequence numbers start with 'N' followed by a number like 10.
3fill in blank
hardFix the error in the sequence number format.
CNC Programming
N[1] G00 Z5 Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Including letters like 'N' or 'G' in the sequence number.
Using code words instead of numbers.
✗ Incorrect
Sequence numbers should be numeric after 'N', like '005'.
4fill in blank
hardFill both blanks to write a program start and first sequence number.
CNC Programming
O[1] N[2] G01 X0 Y0
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing G-codes with program or sequence numbers.
Using non-numeric values for numbers.
✗ Incorrect
Program number is 'O2002' and sequence number is 'N10'.
5fill in blank
hardFill all three blanks to write a program number, sequence number, and a move command.
CNC Programming
O[1] N[2] [3] X50 Y50
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using M-codes instead of G-codes for move commands.
Using letters in sequence numbers.
✗ Incorrect
Program number is 'O3003', sequence number 'N30', and move command 'G01'.
