Unit 3 : Logic Gates Flashcards

(36 cards)

1
Q

What devices control the movement of electrons, and consequently, electricity?

A
  1. Transistors
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is computer built up?

A
  1. Integrated Circuits ( ICs )
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

List out the example for Integrated Circults ( ICs )

A
  1. CPU
  2. Bus Interface
  3. Memory Management Unit
  • It was made up of transistors, resistors, capacitors and other electronic components
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is the primary components of Integrated Circuits ( ICs )

A
  1. Transistors
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How many pins are there in the Transitors ?

A
  1. 3
    * 1st Pin ( Inlet )
    2nd Pin ( Controler )
    3rd Pin ( Outlet )

2nd Pin decides to let the electicity flow through 3rd Pin

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What does resistors do?

A
  1. To resist the current of the electrity to control the electrity flowing to the devices
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What does capacitor do?

A
  1. Stores small amount of electrical energy in a circult
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Does 0 means no electricity flows through the circut?

A
  1. No, 0 has electricity, it was just a signal
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

List out all the logic gates ( 7 )

A
  1. Not Gate
  2. Or Gate
  3. And Gate ( Carry )
  4. Exclusive-OR Gate ( XOR ) ( Sum )
  5. NAND Gate
  6. NOR Gate
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What will Not operators return?

A
  1. Result True if single input value is False
  • x = A
  • Return the opposite value ( 0 -> 1 , 1 -> 0 )
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is Truth Table do in logic gates

A
  1. Specifies results for all possible input combination
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What will Or operators return?

A
  1. Returns True if any input operands are true ( 0 + 0 = False ( 0 ) , 1 + 0 = True ( 1 ) , 0 + 1 = True , 1 + 1 = 1 ( True ) )
    * x = A + B
    * x will only be true when A or B is true
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What will Inclusive Or operators return?

A
  1. Result True is both input operands are true ( 0 * 0 = False ( 0 ) , 1 * 1 = 1 ( True ) , 1 * 0 = False , 0 * 1 = False )
  • x = A * B
    = A . B
    = AB
  • Returns true if both input is true, one false will return in false
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What does Exclusive Or ( XOR ) operators return?

A
  1. Result True if either A or B is True but not both ( 0 * 0 = False ( 0 ) , 1 * 1 = 0 ( False ) , 0 * 1 = True ( 1 ) )
  • A xor B = ( A + B ) * ( A * B ) ‘
  • A xor B = ( A * ( B ) ‘ ) + ( B * ( A ) ‘ )

’ means NOT
* It can be derived from OR, AND and NOT
* Can also named it the hating operator, which means that returns false if both value is the same

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is VLSI stands for?

A
  1. Very Large-Scale Integration
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What are the 3 fundamental operations?

17
Q

What is boolean logic?

A
  1. Rules for handling Boolean constants and variables
18
Q

What operator does NAND gate combine?

A
  1. And Gate
  2. Not Gate
19
Q

What operator does NOR gate combine?

A
  1. Not Gate
  2. Or Gate
20
Q

What is basic for computer design?

A
  1. Boolean Algebra
21
Q

What is combinatorial logic?

A
  1. Combinatorial logic is a type of digital logic where the output depends solely on the present inputs, with no memory of previous operations
22
Q

List out of some examples for some of the things that uses combinatorial logic ( 4 )

A
  1. Logic gates (AND, OR, NOT, XOR)
  2. Multiplexers
  3. Decoders
  4. Arithmetic circuits like adders and subtractor
23
Q

What is sequantial logic?

A
  1. A type of digital logic where the output depends on both the current inputs and the results of previous operations, typically using memory elements to store past state
24
Q

List out of some examples for some of the things that uses sequential logic ( 1 )

25
What is gates or logical gates
1. Integrated circults constructured from transistor switched and other electronic components
26
What are the main use for multiplexers?
1. Mainly used to increase the amount of data that can be sent over the network within a certain amount of time and bandwidth
27
What does multiplexers also called as?
1. Data selector
28
What is multiplexers
1. A device that selects one of several analog or digital input signals and forwards the selected input into a single line
29
What is a half-adder circult?
1. It is a combinational circuit that adds two single-bit binary numbers and produces a sum and a carry
29
What does Half-Adder Output?
1. Sum ( XOR Gate ) 2. Carry ( AND Gate )
29
What is a Full-Adder Circult ?
1. It is a combinational circuit that adds three single-bit binary numbers: two regular bits and an additional carry bit from a previous stage * It will also outputs a sum and carry
30
Full-Adder has how many value?
1. 3 A , B and C ( Carry bit )
31
Why XOR works as sum?
1. Because the calculation was like addition on binary digits A B C 0 0 0 1 0 1 0 1 1 1 1 0 0 + 0 = 0 1 + 0 = 1 0 + 1 = 1 1 + 1 = 10 ( But C shows only 1 digits so it was 0 )
32
Why AND works as a carry?
1. Carry is the carry over value ( 1 + 1 = 10 , 1 is carried over to the second digit ) A B C 0 0 0 1 0 0 0 1 0 1 1 1 0 + 0 = 0 1 + 0 = 0 0 + 1 = 0 1 + 1 = 10 ( This has a carry value, so it has 1)
33
What is the table name for output for all combinations of input and previous states?
1. Truth Table
33
What is the basic memory element for logic circuits?
1. Flip-Flop