1.
age > 18 && weight > 20
age < 18 && weight > 20
age >= 18 && weight >= 20
age >= 18 || weight < 20
age >= 18 && weight <= 20
Q1: Which of the following boolean expressions is appropriate to test if the age of a person is at least 18 and their weight is no more than 20 kilograms?