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?
- a is the largest number.
- b is the largest number.
- c is the largest number.
- b is the smallest number.
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.