How heavy is the boxer? 140 In range!
The and-operator gives true because both sides are true:
weight >= 136 && weight <= 147 140 >= 136 && 140 <= 147 ------------ ----------- true true ----------------- true
An unmarried taxpayer in the US with an income of $24,000 up to $58,150 (inclusive) falls into the 28% "tax bracket." Here is a program that tests if a taxpayer falls into this bracket.
Fill in the blank to test if the income is within this tax bracket.