Answer:
i. (age >= 16) AND (age <= 18)
Step-by-step explanation:
What the statement means is that it will only be true if the person is older than or 16 and younger than or 18.
That means that if either one is not true, the entire statement won't be either, as it requires both to be true to work.
The other 2 statements use NOT which changes the value. This means that if someone is less than 18, which is supposed to be true, the not statement will change it so that it's not.
I hope this makes sense :)