Computer Science, asked by ahamrajsingh35, 3 months ago

Which Operator results is true when both the expressions are true otherwise its false
1 point
AND
NOT
OR
None of these​

Answers

Answered by BrainlyProgrammer
0

QUESTION:-

Q)Which Operator results is true when both the expressions are true otherwise its false

  • AND
  • NOT
  • OR
  • None of tthese

Answer:-

OPTION (1):AND operator

TRUTH TABLE FOR AND , OR AND NOT OPERATOR.

AND:-

  • True AND True= True
  • True AND False=False
  • False AND True=False
  • FALSE AND FALSE=FALSE

OR:-

  • TRUE OR TRUE= TRUE
  • True OR FALSE = TRUE
  • FALSE OR TRUE= TRUE
  • FALSE OR FALSE = FALSE

NOT:-

  • NOT FALSE= TRUE
  • NOT TRUE=FALSE
Similar questions