Multiple choice

Statement: P ^ Q > = R< = T.

Conclusion 1: Q * T.

Conclusion 2: Q ^ T.

A ^ B means A is equal to B.
A & B means A is greater than B. 
A * B means A is less than B.
A # B means A is not less than B. 
A % B means A is not greater than B.

  1. Conclusion 1 is true.

  2. Conclusion 2 is true.

  3. Either conclusion 1 or 2 is true.

  4. Neither conclusion 1 nor 2 is true.

  5. Both conclusions 1 and 2 are true.

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

Yes, this option is correct. ^ ---- ' = ' & ---- '>' *------- '< ' #------ not less than means it's greater than or equal to ' >= % ------- not greater than means it's less than or equal to'<= P ^ Q & R % T means P = Q >= R < =T. This can be expressed as p = q > r< t ===> 1 and P =Q = R= T =======> 2 Conclusion 1: Q % T means Q <= T Q < t is not true. Q = T is true . Conclusion 2:  Q ^ T means Q = T,  which is true.