Given the following code, under what conditions will "You got me" be printed to the screen?

if (expression1):
if (expression2):
print("You got me")
Select one:

a.
Both expression1 and expression2 evaluate to False

b.
expression1 is False and expression2 is True

c.
Both expression1 and expression2 evaluate to True

d.
expression1 is True and expression2 is False

a. Both expression1 and expression2 evaluate to False

What do we call operators that join together two or more logical expressions?

Select one:

a.
Conjunction operators

b.
Concatenation operators

c.
Logical operators

d.
Glue operators

c. Logical operators

Which of the following describes the result of using the "or" operator to join two expressions?

Select one:

a.
True if neither expression is True, or False if both expressions are True

b.
True if either expression is True, or False otherwise

c.
None of these is correct

d.
True if both expressions are true, or False otherwise

b. True if either expression is True, or False otherwise

Which of the following operators will produce a True result only if both joined expressions are True?

Select one:

a.
!=

b.
or

c.
and

d.
not

c. and