Which choice is the most syntactically correct example of the conditional branching?
D:
if num_people > 10; print("There is a lot of people in the pool.") if num_people > 4; print("There are some people in the pool.") else; print("There is no one in the pool.")
A:
num_people = 5 if num_people > 10: print("There is a lot of people in the pool.") elif num_people > 4: print("There are some people in the pool.") else: print("There is no one in the pool.")
C:
num_people = 5 if num_people > 10; print("There is a lot of people in the pool.") elif num_people > 4; print("There are some people in the pool.") else; print("There is no one in the pool.")
B:
num_people = 5 if num_people > 10: print("There is a lot of people in the pool.") if num_people > 4: print("There are some people in the pool.") else: print("There is no one in the pool.")