Sorry is this isn't the best place to post this. In the exercises for chapter 2 of the TI Basic Starter Kit, Review question 8 is presented thusly:
What is the value of this conditional — A/B and C≥D — when A=52, B=3, C=0, and D=2?
I think the author intended A and B to be connected by a test (such as =, >, etc.) rather than the division operator, since the result of a division is not a truth value, but a numeric value. So if we modified the question to fit this idea, one possible question would be:
What is the value of this conditional - A<B and ((C>D) or (C=D)) when A=52, B=3, C=0, and D=2?
The answer would be "False".
I'm sure this was just a simple typo. I'm enjoying the course so far.