
Ultimate access to all questions.
A data engineer is working on a Python program and intends to execute a specific block of code only under certain conditions. The criteria for executing this block are that the variable day_of_week must be equal to 1, and another variable, review_period, must be set to True. Given this scenario, which of the following control flow statements should the data engineer use to initiate this conditional execution of the code block?_
A
if day_of_week = 1 and review_period:_
B
if day_of_week = 1 and review_period = "True":_
C
if day_of_week == 1 and review_period == "True":_
D
if day_of_week == 1 and review_period:_
E
if day_of_week = 1 & review_period: = "True":_