Bird
0
0
PCB Designbi_tool~10 mins

Why correct output files enable fabrication in PCB Design - Test Your Understanding

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to specify the file format used for PCB fabrication output.

PCB Design
output_file = 'board[1]'
Drag options to blanks, or click blank then click option'
A.gerber
B.txt
C.docx
D.jpg
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing a text or image file format instead of Gerber.
2fill in blank
medium

Complete the code to include the drill file in the fabrication output.

PCB Design
fabrication_files = ['board.gbr', [1]]
Drag options to blanks, or click blank then click option'
A'board.bmp'
B'board.pdf'
C'board.csv'
D'board.drl'
Attempts:
3 left
💡 Hint
Common Mistakes
Using document or image file extensions instead of drill file.
3fill in blank
hard

Fix the error in the code that generates the fabrication output files list.

PCB Design
fabrication_files = ['board.gbr', 'board.drl', [1]]
Drag options to blanks, or click blank then click option'
A'board.docx'
B'board.gbl'
C'board.gbr'
D'board.xln'
Attempts:
3 left
💡 Hint
Common Mistakes
Including document or spreadsheet files instead of Gerber layers.
4fill in blank
hard

Fill both blanks to correctly generate the list of essential fabrication files.

PCB Design
fabrication_files = ['board[1]', 'board[2]']
Drag options to blanks, or click blank then click option'
A.gts
B.pdf
C.gto
D.txt
Attempts:
3 left
💡 Hint
Common Mistakes
Using document or text file extensions instead of Gerber layers.
5fill in blank
hard

Fill all three blanks to create a dictionary mapping fabrication file types to their extensions.

PCB Design
fab_files = {'copper_top': 'board[1]', 'copper_bottom': 'board[2]', 'drill': 'board[3]'}
Drag options to blanks, or click blank then click option'
A.gtl
B.gbl
C.drl
D.pdf
Attempts:
3 left
💡 Hint
Common Mistakes
Using document or image file extensions instead of fabrication files.