Year 10 Mock Assessment Flashcards
What is the primary function of an input system in electronics?
Converts physical quantities (light, temp, sound) into electrical signals
What are 3 common input transducers?
LDR (light), thermistor (temp), microphone (sound)
How does a microphone work as an input device?
Converts sound waves into varying voltage signals
What is the purpose of signal conditioning in input systems?
Amplifies/filters weak/noisy signals for processing (e.g., op-amp circuits)
What does a processing system do?
Manipulates input signals (e.g., amplifies, compares, counts, or computes)
Name 3 types of processing components.
Op-amps, microcontrollers, logic gates
What is the role of an amplifier in processing?
Increases signal power/voltage (e.g., pre-amp boosts microphone signals)
How does a microcontroller process inputs?
Runs programmed instructions to make decisions (e.g., traffic light sequences)
What is the function of an output system?
Converts electrical signals back into physical actions (light, motion, sound)
Name 4 output devices.
LEDs, motors, speakers, relays
How does an LED work as an output?
Lights up when current passes through (requires current-limiting resistor)
What is a relay used for in output systems?
Electrically isolates control circuit from high-power loads (e.g., motors)
How does a speaker convert electrical signals?
Coil vibrates in magnetic field to produce sound waves
What is the purpose of a driver circuit (e.g.
transistor/MOSFET)?
Give an example of a closed-loop system.
Thermostat: input (temp sensor) → processing (comparator) → output (heater)
What is feedback in electronic systems?
Output signal fed back to input to regulate performance (e.g., gain control)
How does a public address (PA) system chain work?
Mic (input) → pre-amp → mixer → power amp → speaker (output)
What is the difference between analog and digital processing?
Analog: continuous signals; Digital: discrete binary values (0/1)
Why use buffers between subsystems?
Prevents loading (e.g., op-amp voltage follower isolates stages)
What is impedance matching?
Ensures max power transfer between stages (e.g., mic to pre-amp)
What is Ohm’s Law formula?
V = I × R
How do you calculate power in a circuit?
P = V × I
What is the potential divider formula?
Vout = Vin × (R2/(R1+R2))
Why use a potential divider?
To obtain fraction of input voltage
How does resistance affect current?
Higher resistance = lower current (V constant)
What happens to voltage in a series circuit?
Divides proportionally to resistances
What happens to current in a parallel circuit?
Divides inversely with resistances
How to calculate total series resistance?
Rtotal = R1 + R2 + …
How to calculate total parallel resistance?
1/Rtotal = 1/R1 + 1/R2 + …
What is the loading effect?
“Voltage drop when load draws current”question
How to read 4-band resistor color codes?
1st-2nd: digits, 3rd: multiplier, 4th: tolerance
What does a SPST switch do?
Single Pole Single Throw - simple on/off
What does a SPDT switch do?
Single Pole Double Throw - changes path
What is a push-to-make switch?
Closes circuit only while pressed
What is a push-to-break switch?
Opens circuit only while pressed
What is a reed switch?
Magnetic switch with metal contacts
What is a variable resistor?
Resistance can be adjusted manually
What is a thermistor?
Temperature-dependent resistor (NTC/PTC)
What is an LDR?
Light Dependent Resistor - resistance changes with light
What is a fuse?
Protects circuit by melting at excess current
What are the 3 terminals of a bipolar transistor?
Collector, Base, Emitter
What is hFE in transistors?
Current gain (Ic/Ib)
How does an NPN transistor work?
Current at base controls larger collector current
What is transistor saturation?
Max current flow (fully on state)
What is transistor cutoff?
No current flow (fully off state)
What are MOSFET terminals?
Drain, Gate, Source
What is Vgs(th) for MOSFETs?
Minimum gate-source voltage to turn on
What is gM in MOSFETs?
Transconductance (ΔId/ΔVgs)
Why use MOSFET over bipolar transistor?
Voltage controlled, very high input impedance
What is a Darlington pair?
“Two transistors for very high current gain”question
What is the forward voltage of silicon diode?
~0.7V
What does a diode do?
Allows current in one direction only
What is a LED?
Light Emitting Diode - emits light when forward biased
What is a zener diode used for?
Voltage regulation (reverse breakdown)
What is a bridge rectifier?
4 diodes converting AC to DC
What is a thyristor?
Latching switch (stays on once triggered)
What is a triac?
Bidirectional thyristor for AC control
What is a DIAC?
Bidirectional trigger device for triacs
What is the purpose of a flyback diode?
Protects from voltage spikes when switching inductive loads
What is optical isolation?
Uses LED-phototransistor to isolate circuits
What are the 7 basic logic gates?
NOT, AND, OR, NAND, NOR, XOR, XNOR
What is the truth table for AND gate?
0-0=0, 0-1=0, 1-0=0, 1-1=1
What is De Morgan’s Theorem?
¬(A+B) = ¬A·¬B and ¬(A·B) = ¬A+¬B
What is a universal gate?
Can make all other gates (NAND or NOR)
How to implement NOT using NAND?
Connect both NAND inputs together (A·A)’ = A’
How to implement AND using NAND?
NAND followed by NOT (using another NAND)
How to implement OR using NAND?
Use De Morgan’s: A+B = (A’·B’)’ (NAND inverted inputs)
How to implement NOR using NAND?
OR-with-NAND followed by NOT (two NANDs)
How to implement XOR using NAND?
4 NANDs: (A NAND (A NAND B)) NAND (B NAND (A NAND B))
How to implement XNOR using NAND?
XOR-with-NAND followed by NOT (5 NANDs total)
What is the NAND-only circuit for A·B + C?
3 NANDs: (A NAND B)’ NAND C’
How to make a 2-input multiplexer with NAND?
6 NANDs (requires AND/OR/NOT equivalents)
Why is NAND preferred in IC design?
Fewer transistors needed in CMOS fabrication
What is the NAND equivalent of A+B+C?
Invert inputs, NAND them: (A’·B’·C’)’
How to verify NAND implementation correctness?
Compare truth tables with original gate
What is the minimum NANDs needed for AND-OR logic?
n+1 (for n-input AND followed by NOT)
How to implement A⊕B⊕C with NAND?
Cascade XOR NAND designs (12 NANDs)
What is the NAND-only SR latch design?
Cross-coupled NANDs with Set/Reset inputs
How to optimize NAND circuits?
Share common sub-expressions (e.g., (A NAND B)’ reuse)
What is the NAND gate symbol?
AND symbol with bubble on output
What is the Boolean algebra for NAND?
(A·B)’
What is the NAND truth table?
0-0=1, 0-1=1, 1-0=1, 1-1=0
How does NAND behave as a NOT gate?
A NAND A = A’ (both inputs same)
What is the NAND-based half-adder design?
Sum: XOR (4 NANDs), Carry: AND (2 NANDs)
Why learn NAND implementations?
Foundation for CMOS logic and fault tolerance
What is a truth table?
Shows all input combinations and outputs
How many rows for n-input truth table?
2^n rows
What is a multiplexer (MUX)?
Selects one of many inputs to output
What is a demultiplexer (DEMUX)?
Routes single input to one of many outputs
What is a decoder?
Converts binary code to activated output line
What is an encoder?
Converts activated input to binary code
What is a comparator?
Compares two numbers, outputs relationship
What is a flip-flop?
1-bit memory storage element
What is a shift register?
Stores and shifts data sequentially
What is a counter?
“Sequences through predetermined states”question
What is hysteresis in Schmitt trigger?
Different switching thresholds for rising/falling inputs
Why use Schmitt trigger?
Clean switching with noisy signals, prevents chatter
What are typical CMOS Schmitt thresholds?
V+ ≈ 2/3Vdd, V- ≈ 1/3Vdd
How does comparator differ from Schmitt?
Comparator has single threshold, no hysteresis
What is window comparator?
Checks if signal is between two voltages
What is open-collector output?
Requires pull-up resistor, allows wired-OR
What is rail-to-rail output?
Output swings nearly to supply voltages
What is input offset voltage?
Small voltage difference needed for zero output
What is comparator positive feedback?
Creates hysteresis (Schmitt trigger)
What is comparator negative feedback?
Creates linear operation (op-amp)
What is capacitor charging formula?
Vc = Vs(1-e^(-t/RC))
What is time constant (τ)?
τ = R×C (time to reach 63% of Vs)
How many τ to fully charge capacitor?
~5τ (99.3% charged)
What is capacitor discharge formula?
Vc = V0×e^(-t/RC)
What are electrolytic capacitor precautions?
Observe polarity, voltage rating
What is Xc (capacitive reactance)?
Xc = 1/(2πfC)
How do capacitors behave in DC?
Open circuit at steady state
How do capacitors behave in AC?
Frequency-dependent resistance
What is coupling capacitor?
Blocks DC, passes AC
What is decoupling capacitor?
Filters power supply noise
What is monostable output?
Single pulse of fixed duration
What is astable output?
Continuous square wave
555 monostable time formula?
T = 1.1×R×C
555 astable frequency formula?
f = 1.44/((R1+2R2)×C)
555 astable mark time?
T1 = 0.7×(R1+R2)×C
555 astable space time?
T2 = 0.7×R2×C
What is mark-space ratio?
T1/T2 = (R1+R2)/R2
How to make 50% duty cycle astable?
Make R2»_space; R1
What is retriggerable monostable?
Can extend pulse by retriggering
What is Schmitt trigger oscillator?
Uses RC network with hysteresis
How to find unknown resistor in series?
Rtotal - known resistors
How to find unknown resistor in parallel?
1/Runknown = 1/Rtotal - 1/Rknown
How to calculate current through component?
I = V/R (Ohm’s Law)
How to find voltage across component?
V = I×R or potential divider
How to calculate power dissipation?
P = I²R or V²/R
How to determine time constant?
τ = R×C (for RC circuits)
How to measure frequency from oscilloscope?
f = 1/period (count divisions)
How to calculate gain in dB?
20×log10(Vout/Vin)
How to determine bandwidth?
f2 - f1 where gain drops by 3dB
How to calculate charge on capacitor?
Q = C×V