Given the code below, which expression placed in the ???? location will ensure a False result?

A = False
B = True
C = True
if (????):
Select one:

a.
A and B or C

b.
A and (B or C)

c.
(A and B) or C

d.
A or B or C

c. (A and B) or C