Discover answers to your most pressing questions at Westonci.ca, the ultimate Q&A platform that connects you with expert solutions. Join our Q&A platform and get accurate answers to all your questions from professionals across multiple disciplines. Discover in-depth answers to your questions from a wide network of professionals on our user-friendly Q&A 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