Yeah, that's correct. But, that's not really 2 if statements. That's a single if
statement that's testing multiple expressions. And, yeah, you connect those with and
or or
. With and
connections, all of the tested expressions must be true for the if
code block to be executed. With or
connections, at least one of the expressions must be true for the if
code block to be executed.