I have been running into the same problem, they haven't said anything but that might be the case.
Since you are using a spreadsheet to organize a list of upcoming home repairs. The spreadsheet tool that can you use to create a drop-down list of priorities for each cell in column b is Data validation.
<h3>What is the purpose of data validation?</h3>
The use of rows and columns of data, a spreadsheet is a type of computer program that can store, display, and manipulate data. One of the most used tools that can be used with personal computers is a spreadsheet. A spreadsheet is typically made to store numerical data and brief text passages.
Therefore, in the context of the above, before using data for a business operation, it is best to validate it to ensure its accuracy, integrity, and structure. The output of a data validation operation can be used to generate data for business intelligence, data analytics, or training a machine learning model.
Learn more about spreadsheet from
brainly.com/question/4965119
#SPJ1
Answer:
weights = []
total = 0
max = 0
for i in range(5):
weight = float(input("Enter weight " + str(i+1) + ": "))
weights.append(weight)
total += weights[i]
if weights[i] > max:
max = weights[i]
average = total / 5
print("Your entered: " + str(weights))
print("Total weight: " + str(total))
print("Average weight: " + str(average))
print("Max weight: " + str(max))
Explanation:
Initialize the variables
Create a for loop that iterates 5 times
Get the values from the user
Put them inside the array
Calculate the total by adding each value to the total
Calculate the max value by comparing each value
When the loop is done, find the average - divide the total by 5
Print the results
Answer:
Long-term memory
Explanation:
There are two common types of memory - Long-term and short-term.
In short-term memory, information are stored just for a very short time before they are eventually discarded or transferred to the long-term memory. It is sometimes called working memory. For example, short-time memory can be used to remember that a particular event is going to be by 12pm today. After the event, the information might either be discarded or pushed to the long-term memory.
In long-term memory, information are stored for a very long term, almost permanently. For example, long-term memory enables you to remember an event that has taken place in the past. In the case of Rasheed, he has so much learned the multiplication tables in such a way that information on the tables have been stored indefinitely in a part of his brain called hippocampus. Every time he needs the multiplication tables, they are always available. So he is already taking advantage of the long-term memory.