🎴 Flashcard Mode
Windows Forms Controls and Programming Basics
Card1 / 10
Mastered0
Review0
QuestionClick to flip
With A = False and B = True, which statement evaluates as False?
AnswerClick to flip back
A
A OR A
💡 Explanation:
With A = False and B = True: A OR A = False OR False = False. All other options involve B (True) in an OR operation: A OR B = False OR True = True, B OR A = True OR False = True, B OR B = True OR True = True.