Bird
0
0
PCB Designbi_tool~20 mins

Component values and references in PCB Design - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
PCB Component Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
1:30remaining
Understanding Component Reference Designators

In a PCB design, what does the reference designator R5 typically represent?

AThe fifth resistor component on the board
BThe fifth relay component on the board
CThe fifth resistor-capacitor network
DThe fifth rotary switch
Attempts:
2 left
💡 Hint

Reference designators usually start with a letter indicating the component type.

dax_lod_result
intermediate
2:00remaining
Calculating Total Resistance from Component Values

You have a table of components with their reference designators and resistance values in ohms. Which DAX measure correctly calculates the total resistance of all resistors?

PCB Design
Components = DATATABLE("Ref", STRING, "Value", INTEGER, { {"R1", 100}, {"C1", 10}, {"R2", 200}, {"L1", 5} })
ATotalResistance = CALCULATE(SUM(Components[Value]), Components[Ref] = "R")
BTotalResistance = SUMX(FILTER(Components, Components[Ref] = "R"), Components[Value])
CTotalResistance = SUM(Components[Value])
DTotalResistance = CALCULATE(SUM(Components[Value]), FILTER(Components, LEFT(Components[Ref],1) = "R"))
Attempts:
2 left
💡 Hint

Use FILTER to select only resistors by checking the first letter of the reference.

visualization
advanced
1:30remaining
Best Visualization for Component Value Distribution

You want to show the distribution of component values by type (Resistors, Capacitors, Inductors) on a dashboard. Which visualization is best?

AA stacked bar chart showing total values per component type
BA pie chart showing percentage of each component type by count
CA scatter plot with component value on X-axis and reference number on Y-axis
DA line chart showing component values over time
Attempts:
2 left
💡 Hint

Think about comparing totals across categories clearly.

data_modeling
advanced
2:00remaining
Modeling Component References and Values

You have two tables: Components with reference designators and Values with component values. How should you model the relationship to analyze component values by reference?

ACreate a many-to-many relationship between Components and Values on Ref
BCreate a one-to-many relationship from Components[Ref] to Values[Ref]
CCreate a one-to-one relationship from Values[Ref] to Components[Ref]
DDo not create any relationship; use LOOKUPVALUE in measures
Attempts:
2 left
💡 Hint

One component can have one value, but values table may have multiple entries.

🔧 Formula Fix
expert
2:30remaining
Debugging Incorrect Component Value Aggregation

A DAX measure to sum resistor values is returning zero. The measure is:
TotalResistors = CALCULATE(SUM(Components[Value]), Components[Ref] = "R")
What is the cause of the problem?

AComponents[Value] column contains text, not numbers
BSUM cannot be used inside CALCULATE
CThe filter condition Components[Ref] = "R" is incorrect because Ref contains full designators like 'R1', not just 'R'
DCALCULATE requires an explicit FILTER function to work
Attempts:
2 left
💡 Hint

Check how the filter condition matches the data format.