Complete the code to assign the correct value to the resistor component.
resistor.value = [1]The resistor value is typically given in ohms or kilo-ohms. "10k" means 10 kilo-ohms, which is a common resistor value.
Complete the code to set the reference designator for a capacitor component.
capacitor.reference = [1]Capacitors usually have reference designators starting with 'C' followed by a number, like "C3".
Fix the error in the code to correctly assign the value to an inductor component.
inductor.value = [1]Inductor values are given in henries, often microhenries (uH). "10uH" is a valid inductor value.
Fill both blanks to assign the correct reference and value to a diode component.
diode.reference = [1] diode.value = [2]
Diode reference designators start with 'D', like "D1". The value is usually the diode part number, such as "1N4148".
Fill all three blanks to assign reference, value, and footprint to a transistor component.
transistor.reference = [1] transistor.value = [2] transistor.footprint = [3]
Transistor references start with 'Q', like "Q2". The value is the transistor part number, e.g., "BC547". The footprint is the physical package, such as "TO-92".
