An email, duh!
lol j.k def not email, it is a virus.
a trick to remembering this is that a virus can make you and computer sick.
Font size because the drop roll is how you change the size of a word/letter.
Answer:
scores = []
total = 0
count = 0
highest = 0
lowest = 10
while True:
score = int(input("Enter quiz score: "))
if score == 99:
break
if score < 0 or score > 10:
print("Score must be between 10 and 0")
else:
total += score
count += 1
scores.append(score)
if score > highest:
highest = score
if score < lowest:
lowest = score
average = total / count
print("Scores:")
for s in scores:
print(s, end=" ")
print()
print("The highest score is " + str(highest))
print("The lowest score is " + str(lowest))
print("The arithmetic average is " + str(average))
Explanation:
*The code is in Python.
Initialize the values
Create an indefinite while loop. Inside the loop, ask the user to enter the quiz score. If the score is 99, stop the loop. If the score is smaller than 0 or greater than 10, warn the user. Otherwise, add the score to total, increment the count by 1, and add the score to the scores list. Then, determine the highest and lowest value using if statements.
After the loop, calculate the average.
Print the valid scores, highest score, lowest score and arithmetic average
In a database, a group of fields that are all associated with and accessed using a single primary key is called a record.
What is database?
A database is a planned grouping of material that has been arranged and is often kept electronically inside a computer system. A database is frequently managed with a database management system (DBMS). The term "database system," which is frequently abbreviated to "database," refers to the combination of the data, the DBMS, and the applications which are connected to it.
To facilitate processing and data querying, the most popular types of databases currently in use typically model their data as rows and columns in a set of tables. The data may then be handled, updated, regulated, and structured with ease. For writing and querying data, most databases employ structured query language (SQL).
To learn more about database
brainly.com/question/518894
#SPJ4
Answer:
Business law
Explanation:
Business law are the laws that includes how to start, manage, sell, close a business. They include state and federal laws and administrative regulations.
I hope you find this information useful and interesting! Good luck!