ICSE Class 10 Computer Applications Question 1 of 30

Solved Sample Paper 1 — Question 1

Back to all questions
1
Question

Question 1(i)

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.
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.