asked 137k views
1 vote
Assuming that the variable a is holding the value 4, the variable b is holding the value 6, and the variable c is holding the value 4: the expressions b >= a and a >= c are true and a >= 5 is false. (True/False)

1 Answer

4 votes

Answer:

TRUE

Explanation:

Given:

a = 4

b = 6

c = 4

Are the following all True?

b ≥ a T

a ≥ c T

a ≥ 5 F

6 ≥ 4 T YES 6 is greater than 4

4 ≥ 4 T YES 4 is equal to 4

4 ≥ 5 F YES 4 is not equal to or greater than 5

All statements are true, so the answer is TRUE.

answered
User TrevorKirkby
by
8.3k points

No related questions found

Welcome to Qamnty — a place to ask, share, and grow together. Join our community and get real answers from real people.