in the following program:
count = 0
while True:
count += 1
if count>10:
break
if count==5:
continue
print(count)
what exactly is while True
testing? And can there ever be a while false
condition, if so what would that be testing?