Computer Science, asked by lalithakumarid979, 7 months ago

Give the result of the following expression (i) 5+3 > 7 && 7>= 4+3 (ii) 3==4 && 5!=5

Answers

Answered by StephenDeva
0

Answer:

  1. True
  2. False

Hope it helps

Answered by syed2020ashaels
0

There are many operators used here ,the logic used here was a logic gates

The && is the logical AND operator the result will be true only if both the values are true or nonzero.

the data given in the question was (i)5+3 >7 && 7 >= 4+3

(ii) 3==4 && 5!=5

In (i) 5+3 > 7 && 7 >= 4+3

8 > 7  && 7 >= 7

true && true

Therefore the result is true.T

In (ii) 3==4 && 5! = 5

it is an assigning  && false

Therefore the result is false.

#spj 3

Similar questions