A computer uses unallocated space also know as free space to keep a file that has been deleted in its disk until a new file takes it spot and overwrites it.
Answer:
b=0
c=0
lol=list()
while True:
salary=input("Enter your salary: ")
if salary=="e" or salary=="E":
print("Thankyou!!")
break
else:
a=int(salary)
if a>=300000 and a<=400000:
c=c+1
if a<0 or a>400000:
print("Your salary is either too small or too big ")
if a>0 and a<=400000:
a=a-(25/100*a)-(5/100*a)-(2/100*a)
lol.append(a)
b=b+1
if a>=300000:
c=c+1
print(lol)
print("The number of salaries entered is: "+ str(b))
print("The number of salaries that exceeded 300000 is: "+str(c))
Anticipation I think so but I’m not sure:)
The break statement can be used to eliminate the use of certain (flag) variables.
<h3>What is break statement?</h3>
A break statement is used to terminate the execution of the nearest enclosing for, do, switch, or while statement in which it appears.
The main purpose of break statement is to destroy the loop as soon as possible. For example if the given code asks a use input a integer number x. If x is divisible by 5, the break statement is executed and this causes the exit from the loop.
The advantage of break statement is it stops the case testing inside the block and break may be used within loops to alter control flow.
Therefore, the break statement can be used to eliminate the use of certain (flag) variables.
Learn more break statement here:
brainly.com/question/15082759
#SPJ4