Answer:
The answer is "=average(D2:D5)"
Explanation:
In Excel, the AVERAGE function is used to measures the average number, in the arithmetic average.This method is used as the group of numbers, that determines by using the AVERAGE function. This feature is an AVERAGE, which is used to ignores the logical data, empty columns, or text cell. It is up to 255 specific arguments, that could be handled by AVERAGE, including numbers, numerical values, sets, arrays, or constant.
Answer:
A
Explanation:
Which Microsoft software program is useful for uploading documents to be accessed remotely?
Answer:
Microsoft Remote Desktop
Explanation:
The Microsoft software program that is useful for uploading documents to be accessed remotely is: Microsoft OneDrive.
Cloud computing can be defined as a type of computing that requires shared computing resources such as cloud storage (data storage), servers, computer power, and software over the internet rather than local servers and hard drives. Thus, it offer or avail individuals and businesses a fast, effective and efficient way of providing services to their clients over the internet.
Generally, cloud computing comprises three (3) service models and these are;
Platform as a Service (PaaS).Infrastructure as a Service (IaaS).Software as a Service (SaaS).Microsoft OneDrive can be defined as a software as a service (SaaS) developed by Microsoft Inc. to be used as a cloud (internet-based) storage service and software application synchronization service. It was officially launched on the 7th of August, 2007 by Microsoft.
Basically, Microsoft OneDrive typically offer to its registered customers or end users a free amount of storage space (at least 5 giga-bytes) that can be used to store various type of documents, remotely share digital files, and synchronize multiple files across different mobile and computer-based platforms.
In conclusion, with Microsoft OneDrive you can upload your documents to the cloud and make it available to be accessed remotely by other users.
For more information visit: https://brainly.com/question/7470854
A slot machine is a gambling device that the user inserts money into and then pulls a lever (or presses a button). The slot machine then displays a set of random images. If two or more of the images match, the user wins an amount of money that the slot machine dispenses back to the user. Design a program that simulates a slot machine. When the program runs, it should do the following: Ask the user to enter the amount of money he or she wants to insert into the slot machine. Instead of displaying images, the program will randomly select a word from the following list: Cherries, Oranges, Plums, Bells, Melons, Bars The program will select and display a word from this list three times. If none of the randomly selected words match, the program will inform the user that he or she has won $0. If two of the words match, the program will inform the user he or she has won two times the amount entered. If three of the words match, the program will inform the user that he or she has won three times the amount entered. The program will ask whether the user wants to play again. If so, these steps are repeated. If not, the program displays the total amount of money entered into the slot machine and the total amount won.
Answer:
import random
is_cont = 'y'
amount = float(input("Enter amount: "))
total = 0.0
slot = ['Cherries', 'Oranges', 'Plums', 'Bells', 'Melons', 'Bars']
while is_cont == 'y':
hold = []
for i in range(3):
ent = random.choice(slot)
print(ent)
hold.append(ent)
if hold.count(hold[0]) == 3 or hold.count(hold[1]) == 3 or hold.count(hold[2]) == 3:
print(f"{3 * amount}")
total += 3 * amount
elif hold.count(hold[0]) == 2 or hold.count(hold[1]) == 2 or hold.count(hold[2]) == 2:
print(f"{2 * amount}")
total += 2 * amount
else:
print("$ 0")
is_cont = input("Try again? y/ n: ")
Explanation:
The python program is in a constant loop so long as the 'is_cont' variable has a value of 'y'. The program implements a slot machine as it gets an amount of money from the player and randomly selects an item from the slot list variable three times.
If all three selections match, the player gets three times the amount paid and if two items match, then the player gets twice the pay but gets nothing if all three items are different.
Which two programming languages require the program to be converted into executable code using a compiler? (Choose two.)
Answer:
C# and Java
Explanation:
Compiler can be regarded as a program that helps in transforming a source code( source program) to another program knowns as machine code. Some of the programming languages that needs a compiler are C# and Java. The compiler will collect the the set of instructions of the new program that was written using high level language and translate it into machine language.
Conditional formatting allows spreadsheet users to
turn cell protection functions on and off.
calculate the average number of people at sporting events.
highlight test scores of below 90% in a grade book.
add additional formatting options to a menu.
It C. highlight test scores of below 90% in a grade book.
Answer:
CExplanation:
highlight test scores of below 90% in a grade book.
Answer:
C. highlight test scores of below 90% in a grade book.
Explanation:
:)
To display on a tablet, a photograph needs to be converted into which of the following?
a flowchart
0s and 1s
input
variables
Answer:
0s and 1s
It needs to be converted to bits
Answer:
The guy above me is right, give them brainiest please :)
Explanation:
Did the quiz on Edge. have a good day~