Exercise is a subset of physical fittness
<u>Swap files </u>contain(s) remnants of word processing documents, e-mails, Internet browsing activity, database entries, and almost any other work that has occurred during past Windows sessions.
Explanation:
I order to simulate extra space an operating system like windows use hard disk space in order to stimulate extra memory.When a computer system is running low with the memory space the swap file swaps a section of RAM onto the hard disk in order to obtain a free memory space.
This Process at times results in slowing down of the computer computer considerably.
<u>The combination of RAM and swap files is known as virtual memory.</u>
It is due to the use of virtual memory that our computer is able to run more programs than it could run in RAM alone.
Answer:
O relational
Explanation:
If I'm wrong I'm so so sorry! But form my research it keeps saying its relational.
If I'm right please give me brainliest I really need it to level up so please help me!
If you don't know how to give brainliest there should be a crown underneath my answer you just have to click it.
Thank you and have a wonderful night,morning,afternoon/day! :D
Answer:
count = 0
months = 0
years = int(input("Enter the number of years: "))
for year in range(1, years+1):
cars_sold = int(input("Enter the number of cars sold in first six months: "))
count += cars_sold
months += 6
print("Number of months: " + str(months))
print("Number of cars sold in total: " + str(count))
print("Average number of cars sold per month: " + str(count / months))
Explanation:
Initialize the variables
Ask the user for the number of years
Create a for loop that iterates depending on the given number of years
Ask the user for the number of cars sold in the first six months of the year
Increment the count by given number and increment the months by 6 after each iteration
Print the months, count and, average