Respuesta :

The result of the boolean expression is false

What is the result of the boolean expression?

The values are given as

x = 5, y = 3, and z= 8

The expression is given as

not (x < y or z > x) and y < z

Substitute the given values

So, we have:

not (5 < 3 or 8 > 5) and 3 < 8

5 is less than 3 and 8 is greater than 5.

So, we have:

not (True) and 3 < 8

3 is less than 8

So, we have:

not (True) and true

Not true means false.

So, we have

false and true

This gives false

Hence, the result of the boolean expression is false

Learn boolean expression at

https://brainly.com/question/25039269

#SPJ1