Computer Science, asked by anjukanwar792, 7 months ago

a=10 b=5 c=21 if a>b and a>c: will evaluate to it is true or false

Answers

Answered by AvyaNigam
0

Answer:

a>b = true

a>c = false

Explanation:

10>5 = true

10>21 = false

Answered by Nainika261008
0

Answer:

a>b is true

a>c is false

Explanation:

Let's write them in numbers

a>b

10>5

Therefore the statement is true

a>c

10>21

It's not true

Therefore it's false

Similar questions