What will be displayed by the following code?
isCorrect =&nbsp

Loading

Choose the correct option.

What will be displayed by the following code?
isCorrect = False
print(“Correct” if isCorrect else “Incorrect”)

A. Correct
B. Incorrect
C. nothing
D. Correct Incorrect

Leave a Comment