Given the following code, what can be said about result1 and result2 ?

result1 = (A < 3) or (B > 5) and ((C + D) == 42)
result2 = (A < 3) or \
(B > 5) and \
((C + D) == 42)
Select one:

a.
result1 and result2 will contain different values

b.
result1 will be True and result2 will be False

c.
None of these is valid

d.
result1 and result2 will contain the same value

d. result1 and result2 will contain the same value