Answer:
Explanation:
Ollie’s thesis may not be backed up as reliably as he might wish. A backup program may pass over a file that is currently open for writing, as the state of the data in such a file may be indeterminate.
There are actually a couple of questions in here. I'll try to answer them in Python, which kind of looks like psuedocode already.
1. Design a loop that asks the user to enter a number. The loop should iterate 10 times and keep a running total of the numbers entered.
Here, we declare an empty array and ask for user input 10 times before printing a running total to the user's console.
<em>numbers = []
</em>
<em>for i in range(10):
</em>
<em> numbers.append(input("number: ")) </em>
<em>print(f"running total: { ', '.join(numbers) }")</em>
<em />
2. Design a program with a loop that lets the user enter a series of numbers. The user should enter -99 to signal the end of the series. After all the numbers have been entered, the program should display the largest and smallest numbers entered.
Here, we declare an empty array and ask for user input forever until the user types -99. Python makes it really easy to get the min/max of an array using built-in functions, but you could also loop through the numbers to find the smallest as well.
<em>numbers = []
</em>
<em>while True:
</em>
<em> n = int(input("number: "))
</em>
<em> if n == -99: </em>
<em> break
</em>
<em> numbers.append(n)
</em>
<em>print(f"largest number: { max(numbers) }")
</em>
<em>print(f"smallest number: { min(numbers) }") </em>
<em />
Answer: for 5 its b and for 6 i may be wrong but i think its also b
Explanation:
Answer:
To create a console that is suitable for children and families.
Answer:
control processes.
Explanation:
Mechanisms that combine memory, processing speed, and knowledge to regulate the analysis and flow of information within the information-processing system are referred to as executive/control processes.