• retagged by
11,808 views

2 Answers

Best answer
13 13 votes

B and D are answers

A. OR:

0+1 = 1+0  =1  => Commutative

(0+1)+1= 1+1 =1                            0+(1+1)= 0+1 =1 => Associative

B. NOR

0 NOR 1 = 1 NOR 0 =0 => Commutative

(0 NOR 1) NOR 1 =0 NOR 1 = 0             0 NOR(1 NOR 1) =0 NOR 0 = 1 => Not associative

C. XOR

0 XOR 1 = 1 XOR 0 = 1    => Commutative

(0 XOR 1) XOR 1 =1 XOR 1 = 0               0 XOR(1 XOR 1) = 0 XOR 0 =0        => Associative

D. NAND

0 NAND 1 = 1 NAND 0 =1    => Commutative

(0 NAND 1)NAND 1 = 1 NAND 1 =0                  0 NAND (1 NAND 1) = 0 NAND 0 = 1  => Not associative

  • Every logic gate follows Commutative law
  • AND,OR,Ex-OR,EX-NOR follows Associative law. NAND,NOR doesn`t follow Associative law.
  • AND ,OR follows Distributive law.Ex-OR,EX-NOR,NAND,NOR doesn`t follow Distributive law.
• selected by
0 0 votes
commutative means A op B = B op A for all values of A and B.

associative means (A op B) op C = A op (B op C) for  all values of A , B, and C.

the above rules are applied on OR, NOR, EX-OR, NAND operations. Then finally conclude that NOR and NAND both operations are commutative but not associative.
• edited by
Answer:
Position:
Show:

Related questions

3 3 votes
1 answers 1 answer
2.3k
2.3k views
go_editor asked Jul 11, 2016
2,322 views
Match the following :$\begin{array}{clcl} \text{a.} & \text{TTL} & \text{i.} & \text{High fan out} \\ \text{b.} & \text{ECL} & \text{ii.} & \text{Low propagation delay}...
0 0 votes
1 answers 1 answer
3.5k
3.5k views
go_editor asked Jul 11, 2016
3,512 views
Match the following $\textsf{IC}$ families with their basic circuits :$\begin{array}{clcl} \text{a.} & \text{TTL} & \text{i.} & \text{NAND} \\ \text{b.} & \text{ECL} & \...
1 1 vote
3 3 answers
5.0k
5.0k views
go_editor asked Jul 8, 2016
5,039 views
Consider the circuit shown below. IN a certain steady state, ‘Y’ is at logical ‘l’. What are the possible values of A, B, C?$A=0, B=0, C=1$$A=0, B=C=1$$A=1, B=C=0$$A= B=1...
3 3 votes
4 4 answers
4.2k
4.2k views
go_editor asked Jul 11, 2016
4,197 views
Given a Relation POSITION (Posting-No, Skill), then the query to retrieve all distinct pairs of posting-nos. requiring skill isSelect p.posting-No, p.posting-No from posi...