At Westonci.ca, we connect you with the best answers from a community of experienced and knowledgeable individuals. Join our platform to connect with experts ready to provide detailed answers to your questions in various areas. Experience the convenience of finding accurate answers to your questions from knowledgeable experts on our platform.

What statement must be added to the following code snippet to report the number of temperatures below zero?
temperatures = [30, 20, 2, -5, -15, -8, -1, 0, 5, 35]
num_neg = 0
for temp in temperatures:
if
temp _____________

A. num_neg += 1
B. num_neg++
C. num_neg -= 1
D. num_neg % 1