Answer:
Product-based companies make a specific product and try to market it as a solution. But project-based companies create a solution based on many products and sell it as a packaged solution to a particular need or problem.
Explanation:
hope this helps
In the case above, the right thing that one need to do is to Download the data as a .CSV file, then import it into a spreadsheet.
<h3>What is in a CSV file?</h3>
A CSV is known to be a comma-separated values file and this is said to be a a text file that is known to contain all the information that is often separated by the use of commas.
Note that the CSV files are said to be one that are known to be commonly seen in spreadsheets as well as in databases.
A person can be able to make use of a CSV file to be able to transmit data between programs that are known to be not ordinarily available to exchange data.
Therefore, In the case above, the right thing that one need to do is to Download the data as a .CSV file, then import it into a spreadsheet.
Learn more about CSV file from
brainly.com/question/14338529
#SPJ1
Depends What type of Hardware you are talking about there it depends what you upgrade in a computer for example if you upgrade your ram it make it run and preform faster.
Yes.
-----------------------------------------------------------------------------------
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