Answer: Operating system
Explanation:
The operating system is the type of software that are responsible for manage the processor time and also the memory allocation in the system. The operating system mainly deals with the processor time by scheduling the processor work done in the system.
The OS mainly control the system and then schedule the execution of various types of function by the central processing system (CPU). It also control the memory allocation in the system.
Answer:
453.6
Explanation:
It is 453.6 because you are rounding to the nearest ten cents place and in the number 453.56, 5 is in the ten cents place or the tenths place so you look at the number to its right, which is 6 and when you round, numbers 0-4 cause the rounding number to stay the same, numbers 5-9 cause them to go up one. In this situation, it is six so the number 5 would go up one, making it 6 and then you get rid of the numbers to the right side making it 453.6
Answer:
a=input("Amount in pennies")
b=int(a)
dollars=0
dimes= 0
quarters=0
nickels=0
pennies = 0
dollars = int(b/100)
b= b- dollars *100
quarters=int(b/25)
b=b-quarters*25
dimes = int(b/10)
b = b -dimes*10
nickels=int(b/5)
b=b - nickels * 5
pennies = b
print(dollars)
print(dimes)
print(nickels)
print(pennies)
Explanation:
The required program is in answer section. Note, the amount is entered in pennies.