Year 10 Mock Assessment Flashcards
(74 cards)
What is the function of an AND gate?
An AND gate outputs HIGH (1) only when all its inputs are HIGH (1). The Boolean expression is Q = A • B.
What is the function of an OR gate?
An OR gate outputs HIGH (1) when at least one of its inputs is HIGH (1). The Boolean expression is Q = A + B.
What is the AND gate truth table in equation form?
0 • 0 = 0, 0 • 1 = 0, 1 • 0 = 0, 1 • 1 = 1
What is the OR gate truth table in equation form?
0 + 0 = 0, 0 + 1 = 1, 1 + 0 = 1, 1 + 1 = 1
What is the NAND gate truth table in equation form?
0 • 0 = 1, 0 • 1 = 1, 1 • 0 = 1, 1 • 1 = 0
What is the NOR gate truth table in equation form?
0 + 0 = 1, 0 + 1 = 0, 1 + 0 = 0, 1 + 1 = 0
What is Boolean algebra?
Boolean algebra is a mathematical system for logical operations using binary variables (0 and 1) and operators like AND (•), OR (+), and NOT (¬).
How can you create an AND gate using NAND gates?
An AND gate can be made by connecting two NAND gates in series: Q = NAND(NAND(A,B), NAND(A,B))
How can you create an OR gate using NAND gates?
An OR gate can be made with three NAND gates: Q = NAND(NAND(A,A), NAND(B,B))
What are the three main subsystems in a system block diagram?
- Input subsystem (sensors/switches) 2. Processing subsystem (logic circuits/microcontrollers) 3. Output subsystem (actuators/displays)
What is a monostable circuit?
A monostable circuit has one stable state and produces a single output pulse of fixed duration when triggered before turning off.
What is an astable circuit?
An astable circuit has no stable state and continuously oscillates between HIGH and LOW states, producing a square wave.
What does the output waveform of a monostable look like?
A single pulse with duration determined by RC components, returning to stable state after trigger.
What does the output waveform of an astable look like?
A continuous square wave with mark/space ratio determined by circuit components.
How do you calculate total resistance in series?
R_total = R1 + R2 + R3 + … (sum of all resistances)
How do you calculate total resistance in parallel?
1/R_total = 1/R1 + 1/R2 + 1/R3 + … (reciprocal of sum of reciprocals)
What is the voltage divider rule?
V_out = V_in × (R2 / (R1 + R2)) for two series resistors with output taken across R2.
What is the 555 timer IC?
An 8-pin integrated circuit capable of producing accurate time delays or oscillations in monostable/astable modes.
What is the function of pin 2 (Trigger) on a 555 timer?
When voltage here falls below 1/3 Vcc, it starts the timing cycle in monostable mode or triggers oscillation.
What is the function of pin 6 (Threshold) on a 555 timer?
When voltage here exceeds 2/3 Vcc, it resets the flip-flop ending the output pulse in monostable mode.
What is the function of pin 7 (Discharge) on a 555 timer?
Provides a path for capacitor discharge when the internal transistor is active (ON).
What is the function of pin 3 (Output) on a 555 timer?
Provides the output signal which can source or sink current to drive loads.
What is the function of pin 5 (Control Voltage) on a 555 timer?
Allows access to the internal voltage divider for modifying threshold/trigger levels.
What is the function of pin 1 (Ground) on a 555 timer?
Connected to 0V reference for the circuit.