Logic Circuits II - SS2 ICT Past Questions and Answers - page 2
What is the output of an OR gate if all inputs are 0?
0
1
Cannot be determined
What is the primary function of an AND gate?
Invert the input signal
Amplify the input signal
Combine input signals
Which logic gate has a symbol that resembles an inverted "Y"?
AND gate
OR gate
NOT gate
If the input to a NOT gate is 1, what will be the output?
0
1
Cannot be determined
A NAND gate behaves as an AND gate followed by a ____________.
NOR gate
NOT gate
OR gate
Explain the functioning of an AND gate with an example.
An AND gate performs a logical AND operation on its input signals. It produces a high output (1) only when all input signals are high (1). For example, if you have two input signals A and B, an AND gate will output 1 only when both A and B are 1; otherwise, it will output 0.
How does a NOT gate differ from other logic gates in terms of its operation?
Unlike other logic gates that combine or manipulate input signals, a NOT gate performs an inversion operation. It takes a single input signal and produces an output signal that is the opposite of the input. If the input is 0, the output is 1, and vice versa.
Design a circuit using OR gates to represent the condition "At least one of the two input signals is high."
To represent the condition "At least one of the two input signals is high," you can use two OR gates. Let the input signals be A and B. Connect A to the first OR gate's input and B to the second OR gate's input. Connect the outputs of both OR gates to a common output. The output will be high (1) if either A or B (or both) are high (1).
Describe a scenario where a NAND gate could be used in a real-world application.
A NAND gate's output is the logical NOT of its AND operation. One real-world application of a NAND gate is in memory circuits, specifically in dynamic random-access memory (DRAM) cells. In DRAM, multiple transistors are connected in series to form a NAND gate. This configuration allows the memory cell to store data as charge in a capacitor. The data is read and written using the NAND operation, making it a fundamental component in modern computer memory systems.