309 views
1 votes
1 votes

What is the equivalent de morgan's representation of the logic statement (c!=n && q <=5) ?

  1. ! ( c!=n || q>=5)
  2. ! ( c==n || q>=5)
  3. ! ( c!=n || q>5)
  4. ! ( c==n || q>5)

2 Answers

Best answer
2 votes
2 votes
re writing it as ((c!=n)&&(q<=5))

now again rewriting it (((c!=n)&&(q<=5))')'

!((c!=n)&&(q<=5))'
!($\left ( \overline{c!=n} \right )||\left ( \overline{q<=5} \right )$)

!(c==n || q>5)
selected by
0 votes
0 votes

Demorgan's Theorem

¬(p q) ≡ ¬p ∨ ¬q
¬(p q) ≡ ¬p ∧ ¬q

As per Question:!(c!=n&&q<=5)

                            =!((c!=n)&&(q<=5))

                             =!((c==n)||(q>5))

                             =!(c==n||q>5)

Answer  4 is correct.


 

Related questions

1 votes
1 votes
2 answers
1
Tesla! asked Apr 22, 2018
600 views
Which of the following can be used to realize all the boolean function A) NandB) ExorC) ANDD) Nor
2 votes
2 votes
0 answers
2
Tesla! asked Apr 22, 2018
675 views
By connecting Q to ___ and Q' to ____ we can achieve sequence 1,0,1,0,1..... using SR flip-flop where s is set to 1 and R to 0A) S SB) S RC) R SD) R R
4 votes
4 votes
1 answer
3
lamsal asked May 3, 2017
2,020 views
Let X be a length used to make three sides of a rectangle. Area of rectangle will be:A. $X^{2}/9$B. $(X-a)^{2}/4$C. $(X+a)^{2}/16$D. None of the above
0 votes
0 votes
2 answers
4
lamsal asked May 2, 2017
1,252 views
For same perimeter $p$ which of these will have least area:A. RectangleB.Equilateral triangleC.Right triangleD.CircleE. Regular hexagon