Home ETE-2343 (Spring 2024) (DELD)
Home ETE-2343 (Spring 2024) (DELD)

ETE-2343 (Spring 2024) (DELD)

Q1. a) Short Notes & Parity Check

Reflective Code (Gray Code):

  • Gray Code changes only one bit at a time when counting.

  • Example: 000 → 001 → 011 → 010 → 110 → 111 → 101 → 100

Even Parity Check:

  • Total number of 1’s must be even.

    • (a) 10101010 → 4 ones (Even) ✅

    • (b) 1110110 → 5 ones (Error) ❌

    • (c) 10111001 → 5 ones (Error) ❌

Odd Parity Check:

  • Total number of 1’s must be odd.

    • (d) 10101111 → 6 ones (Error) ❌

    • (e) 10011010 → 4 ones (Error) ❌

    • (f) 11101010 → 5 ones (Correct) ✅




Q1. b) Advantages & Disadvantages of Digital Systems

Advantages:

  • More accurate, less noise.

  • Easy to store and process data.

  • Can be encrypted for security.

Disadvantages:

  • Needs more power than analog.

  • Complex design.

  • Can lose data if error occurs.



OR

Q1. a) Universal Gate (NAND) & XOR/XNOR Gates

  • NAND is Universal: It can make NOT, AND, OR gates.

    • NOT: NAND with same input (A NAND A = NOT A).

    • AND: NAND + NOT.

    • OR: NAND with inverted inputs.

XOR Gate (⊕):

  • Outputs 1 if inputs are different.

  • Function: AB=AB+AB

XNOR Gate (⊙):

  • Outputs 1 if inputs are same.

  • Function: AB=AB+AB



Q1. b) Gate Implementation & Complement

Function: F1=x+yz

  • Gate Implementation: OR gate with x and yz (AND of NOT y and z).

  • Truth Table:

xyzy'y'zF1 = x + y'z
000100
001111
... (Fill for all 8 combinations)

Complement of F(x,y,z)=xyz+xyz:

  • Use De Morgan’s Law:
    G=(xyz+xyz)=(xyz)(xyz)=(x+y+z)(x+y+z)




Q2. a) Sum of Minterms for F=A+BC

  • First, make truth table for A,B,C.

  • Minterms where F=1:

    • A=1 (any B,C) → Minterms: 4,5,6,7

    • BC=1 → Minterms: 1,3

  • Final: F=(1,3,4,5,6,7)




Q2. b) Product of Maxterms for F=xy+xz

  • Find where F=0:

    • x=0,y=0 → F=0

    • x=0,z=0 → F=0

    • x=1,y=0,z=0 → F=0

  • Maxterms: (x+y+z)(x+y+z)(x+y+z)(x+y+z)




Q3. a) Simplify F(x,y,z)=(0,2,4,5,6)

  • K-Map Simplification:

    • Group: 0,2,4,6 → z

    • Group: 4,5 → xy

  • Simplified: F=z+xy




Q3. b) Simplify F(w,x,y,z)=(0,1,2,4,5,6,8,9,12,13,14)

  • K-Map Simplification:

    • Group: 0,1,4,5,8,9,12,13 → y

    • Group: 0,2,4,6,8,12 → xz

    • Group: 0,1,2 → wx

  • Simplified: F=y+xz+wx

Comments

You May Also Like