Answer:
d)Conditions 2, 3 and 4 are all true, Condition 1 is not
Step-by-step explanation:
Condition 1: (x < y && x > 0)
This will evaluate to False because 5<3 = false. X>0 = true.
False && True = False
Condition 2: (a != d || x != 5)
This will evaluate to True because a != d is True. X != 5 is False.
True || False = True
Condition 3: !(true && false)
This will evaluate to True because !(False) = True
Condition 4: (x > y || a == 'A' || d != 'A')
This will evaluate to True
X>Y = True
a=='A' is False
d != 'A' False
True || False || False = True
From the above, the correct answer is:
d)Conditions 2, 3 and 4 are all true, Condition 1 is not