select the correct answer. which is the output of the formula =xor(120<102;83=83;51<24)? a. true b. false c…

select the correct answer. which is the output of the formula =xor(120<102;83=83;51<24)? a. true b. false c. 83 d. 24 e. 120
Answer
Explanation:
Step1: Evaluate individual conditions
$120<102$ is FALSE, $83 = 83$ is TRUE, $51<24$ is FALSE.
Step2: Apply XOR operation
The XOR (ex - clusive OR) operation returns TRUE if an odd number of the input logical values are TRUE. Here, we have one TRUE value among three logical values. So the result of XOR(FALSE, TRUE, FALSE) is TRUE.
Answer:
A. TRUE