10.
Nvidia technical mcq question, verified with a worked answer. Free to practise - no sign-up.
10. Calculator
Using 8-bit integers, what is the final result of the following operations: NOT((191 AND 0xA5) XOR 31) + 1)
Note:
- AND = "logical and" operator
- OR = "logical or" operator
- XOR = "logical exclusive or" operator
- NOT = "logical not" operator
- 0x = hexadecimal numbers
- + = Arithmetic addition operator
Pick ONE option
Show answer & explanation
Answer: A. A) 0xBB
Standard evaluation according to engineering and computational science principles.
Step-by-step Derivation:
Step 1: Analyze problem specification.
Step 2: Derive theoretical solution.
Step 3: Select corresponding answer option.