Practice - 5 Tasks
Answer the questions below
1fill in blank
easyComplete the code to specify the number of PCB layers in the order.
PCB Design
order.layers = [1] Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing too many layers for a simple PCB increases cost unnecessarily.
Leaving the layers field empty causes order errors.
✗ Incorrect
The standard number of layers for a simple PCB order is 2 layers.
2fill in blank
mediumComplete the code to set the PCB thickness to the common standard.
PCB Design
order.thickness = '[1]'
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using a thickness that is too thin can cause mechanical issues.
Choosing a non-standard thickness may increase cost.
✗ Incorrect
1.6mm is the most common PCB thickness used by fabricators.
3fill in blank
hardFix the error in the code to correctly set the solder mask color.
PCB Design
order.solder_mask = '[1]'
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using unsupported colors may delay fabrication.
Leaving the solder mask color blank causes errors.
✗ Incorrect
Green is the default and most common solder mask color for PCBs.
4fill in blank
hardFill both blanks to set the PCB finish type and copper weight.
PCB Design
order.finish = '[1]' order.copper_weight = '[2]'
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing HASL finish when ENIG is required for fine pitch components.
Using 2oz copper weight unnecessarily increases cost.
✗ Incorrect
ENIG finish is common for high-quality PCBs and 1oz copper weight is standard.
5fill in blank
hardFill all three blanks to set the PCB panelization, minimum drill size, and test method.
PCB Design
order.panelization = '[1]' order.min_drill = '[2]' order.test_method = '[3]'
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using v-score panelization when array is required.
Specifying drill sizes smaller than fabricator capabilities.
Choosing test methods not supported by the fabricator.
✗ Incorrect
Array panelization is common, 0.2mm is a typical minimum drill size, and flying probe test is standard for prototypes.
