Analyze the following code.
 count = 0<

Loading

Choose the correct option.

Analyze the following code.
 count = 0
 while count < 100:
     # Point A
     print(“Welcome to Python!”)
     count += 1
     # Point B
 # Point C

A. count < 100 is always True at Point A
B. count < 100 is always True at Point B
C. count < 100 is always False at Point B
D. count < 100 is always True at Point C

Leave a Comment