Multiple choice technology mainframe

If Data-A = 1 and Data-B = 2 and Data-C = 3, which of the following conditions is true?

  1. Data-A < Data-B And Data-C < Data-A

  2. Data-B > Data-C Or Data-A > Data-C

  3. Data-A < Data-B And Data-C

  4. Data-A < Data-B And Data-A > Data-C

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

With Data-A=1, Data-B=2, Data-C=3: Option C (Data-A < Data-B And Data-C) evaluates to True because 1<2 is true, and Data-C (non-zero 3) is treated as true in boolean context. Options A and D are false (contradictions), B is false (2>3 is false, 1>3 is false).