136k views
0 votes
What is the output of the following condition statement if A = 45: A >= "45"

True, False, Error message display
What is the output of the following condition statement if A = 45: A < 45
True, False, Error message display
What is the output of the following condition statement if A = "apple": A == "apple" True, False, Error message display

User Kalisky
by
8.2k points

2 Answers

5 votes
In order of questions, the answers would be:
True
False
True
User Regg
by
8.5k points
2 votes

Answer:

True

False

True

Step-by-step explanation:

if A = 45: A >= "45"

True- Error message display

if A = 45: A < 45

False- Error message display

if A = "apple": A == "apple"

True- Error message display

User SilentTremor
by
7.3k points