You are looking to process the data based on two variables, one to check if the department is supply chain and second to check if process flag is set to True

You are looking to process the data based on two variables, one to check if the department is supply chain and second to check if process flag is set to True
A . if department = “supply chain” & process:
B. if department == “supply chain” && process:
C. if department == “supply chain” & process == TRUE:
D. if department == “supply chain” & if process == TRUE:
E. if department == "supply chain" and process:

Answer: E

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments