Computer Science, asked by ranisesangelie, 19 days ago

Write a Boolean expression that evaluates to true if age is greater than 13 and less than 18.

Answers

Answered by maya3227
0

solution: Here the expression ( 14 > 13) && ( 14 < 18 )

evaluates to true.

Because (14>13) evaluates to true, ( 14 <18) evaluates to true. And true && true is true.

Answered by saidch365
0

Answer:

write a boolean expression that evaluates to true if age is greater than 13 and less than 18.

Similar questions