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

Respuesta :

In order of questions, the answers would be:
True
False
True

Answer:

True

False

True

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

ACCESS MORE