Computer Applications

If ((a > b) && (a > c)), then which of the following statement is true?

  1. a is the largest number.
  2. b is the largest number.
  3. c is the largest number.
  4. b is the smallest number.

Java Conditional Stmts

112 Likes

Answer

a is the largest number.

Reason — Assuming that the given condition ((a > b) && (a > c)) is true, it implies that (a > b) and (a > c) both are true. Hence, a is greater than b and c.

Answered By

55 Likes


Related Questions