Which Microsoft software program is useful for uploading documents to be accessed remotely?

Answers

Answer 1

Answer:

Microsoft Remote Desktop

Explanation:

Answer 2

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


Related Questions

An internet download speed is 4.2 MB/S (constant). How long will it take to download a 30 GB file?

And with 900 KB/S?

Answers

Answer:

(a) [tex]Time= 119.05 \ min[/tex]

(b) [tex]Time= 9.26\ hr[/tex]

Explanation:

Given

[tex]File = 30GB[/tex]

Required

Download time

Solving (a): When Speed =4.2Mb/s

Speed is calculated as:

[tex]Speed = \frac{File\ Size}{Time}[/tex]

Make Time the subject:

[tex]Time= \frac{File\ Size}{Speed }[/tex]

Substitute values for File Size and Speed

[tex]Time= \frac{30Gb}{4.2Mb/s}[/tex]

Convert Gb to Mb

[tex]Time= \frac{30*1000Mb}{4.2Mb/s}[/tex]

[tex]Time= \frac{30000s}{4.2}[/tex]

Convert to minutes

[tex]Time= \frac{30000}{4.2*60}\ min[/tex]

[tex]Time= \frac{30000}{252}\ min[/tex]

[tex]Time= 119.05 \ min[/tex]

When converted, it is approximately 2 hours

Solving (a): When Speed =900Kb/s

[tex]Time= \frac{File\ Size}{Speed }[/tex]

Substitute values for File Size and Speed

[tex]Time= \frac{30Gb}{900Kb/s}[/tex]

Convert Gb to Kb

[tex]Time= \frac{30*1000000Kb}{900Kb/s}[/tex]

[tex]Time= \frac{30*1000000s}{900}[/tex]

[tex]Time= \frac{1000000s}{30}[/tex]

[tex]Time= \frac{100000}{3}s[/tex]

Convert to hours

[tex]Time= \frac{100000}{3*3600}hr[/tex]

[tex]Time= \frac{1000}{3*36}hr[/tex]

[tex]Time= \frac{1000}{108}hr[/tex]

[tex]Time= 9.26\ hr[/tex]

Answer:

(a)

(b)

Explanation:

Given

Required

Download time

Solving (a): When Speed =4.2Mb/s

Speed is calculated as:

Make Time the subject:

Substitute values for File Size and Speed

Convert Gb to Mb

Convert to minutes

When converted, it is approximately 2 hours

Solving (a): When Speed =900Kb/s

Substitute values for File Size and Speed

Convert Gb to Kb

Convert to hours

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.

Answers

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.

Sites on the surface web are _____.
A. freely available to all users

B. home pages only

C. older pages that have not been updated

D. member-only sites

Answers

It’s A because surface website’s are available for everybody but the dark web is opposite

It should be noted that Sites on the surface web are A. freely available to all users.

What is Surface Web?

The Surface Web can be regarded as a portion of the World Wide Web which is accessible for  general public and it can be  searched with standard web search engines.

Therefore, option A is correct.

Learn more about Surface Web at:

https://brainly.com/question/4460083

Write a method doubleUp that doubles the size of a list of integers by doubling-up each element in the list. Assume there's enough space in the array to double the size. Suppose a list stores the values [1, 3, 2, 7]. After calling list.doubleUp(), the list should store the values [1, 1, 3, 3, 2, 2, 7, 7].

Answers

Answer:

def double_up(self, mylist):

   doubled = list()

   for item in mylist:

       for i in range(2):

           doubled.append(item)

   return doubled

Explanation:

The program method double_up gets the list argument, iterates over the list and double of each item is appended to a new list called doubled.

Methods are functions defined in classes. A class is a blueprint of a data structure. Each instance of the same class holds the same attributes and features.

Select the correct answer.
Which task occurs during the development phase of the SDLC?
A.
requirements gathering
OB.
coding
O C.
maintenance
OD. budgeting

Answers

Answer:

The correct answer is: Option OB. Coding

Explanation:

Software Development Life Cycle is used to develop software. It is a general collection of steps that have to be followed in development of software.

The development phase comes after the system design phase of SDLC. The coding and programming for software is done in the development stage.

Hence,

The correct answer is: Option OB. Coding

Answer:

coding

Explanation:

To display on a tablet, a photograph needs to be converted into which of the following?
a flowchart
0s and 1s
input
variables

Answers

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~

Which two programming languages require the program to be converted into executable code using a compiler? (Choose two.)

Answers

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.

Answers

Answer:

C

Explanation:

highlight test scores of below 90% in a grade book.

Answer:

C. highlight test scores of below 90% in a grade book.

Explanation:

:)

Other Questions
The biggest fleet ever assembled until when? Please I need help ASAP!!!!!!! Ill give 20 points. why do lesions suggest you might be more susceptible to infections CAROLINAABUELOCAROLINAABUELOAbuelo, scmo era tu niez? Era midiferente de la mia?Bueno, en algunas cosas s, en otras no. Porejemplo, de nio yo me levantaba a las cuatroy media de la maana, porque vivamos en elcampo y tena que ayudar con las labores dela finca. T no te levantas hasta las siete.Sufras de muchas presiones?No sufra del estrs de la vida urbana como ahora,pero si haba presiones. Nos preocupbamos por el clima, porejemplo. Si no llova, la finca no produca lo suficiente. Y claro, asistaa la escuela como t y a veces me senta rendido por los estudios.Y entre familia, se divertian ustedes bastante?Ah, ipues claro! Dedicbamos mucho tiempo a las actividades paratoda la familia, hablbamos y leamos por la tarde y nos reamosmucho. En general, yo fui muy feliz de nio.CAROLINAABUELO. Write down each verb you see conjugated in the imperfect tense in the order that they appear in the paragraph above ? Greeks were required to stop all fighting of wars during the Olympic Games.TrueFalse Please can someone help me write a poem about flower, Love ? Thank you please help ASAP!!!!! A blueberry bush uses energy from the sun to make sugars. which set of enerdy transformations BEST describe this process? A customer paid 3.5% sales tax on her purchase. How much sales tax didthe customer pay on a $14.00 purchase. Simple math question. (Algebra) DNA is double-stranded, while RNA is single-stranded. How are their forms related to their functions? In the United States who elects the legislators A baseball pitcher delivers a pitch by exerting an average force of 15 N for a time interval of 0.42 s. How much impulse does he impart to the ball ? Jeff read a total of 54 pages in his history and sociology text book he read 41 pages in his history text book how many pages he read in his sociology text book QLFind the x- and y-intercepts of the equation.-x + 2y = 4O (4,0). (0,2)O None of theseO (-4.0), (0.-2)O (4.0), (0, -2)O (-4.0), (0.2) pls help Anyone out there can you help me please! this is Urgent and I need help!If someone says Man is Born Free and Everywhere he is in Chain. what might someone reply back?? someone give me some ideas. PLEASE HELP!! I WILL MARK BRAINLIEST! PLEASE HELP!!!!!!!! Explain the conflicts that manifest destiny/westward expansion brought for American settlers and the indigenous people, American Indians. linear or non linear 2, 5, 9, 14, ?, 27. whats the missing number?