What types of storage can be used to access your data on another computer

Answers

Answer 1
Answer: Cloud storage. If the information is on a server, you can access the data from another computer.

Related Questions

Which agency coordinate the Internet's IP addressing and DNS system.
Which of the following is involved in ordering an outline? arranging grouping merging organizing
Which of the following is true?The diagram is accurate as shown A mouse is an input peripheral but is shown as an output peripheral Printers are output peripherals but are shown as an input peripheral Flash drives are not considered peripheral devices and should not be on the diagram
When planning the structure of a spreadsheet, columns are for _______ items and rows are for _______ items. A. single; group B. group; group C. single; single D. group; single
What's the points for on this site

Once Raul selects a technology solution, he has completed the process.
a. True
b. False

Answers

the answer is true because choosing a technology solution is the last step

False, there are further steps after selecting a technology solution.

I tried True on Odessyware and got it incorrect.

I hope this helps!

What kind of material is used to make the positive electrode of a dry cell?A.carbon rod
B.zine can
C.steel cover.
D.electrolyte paste

Answers

D.electrolyte paste, is best choice.

The answer is "zine can"

A student is recording a song on her computer. When the recording is finished, she saves a copy on her computer. The student notices that the saved copy is of lower sound quality than the original recording. Which of the following could be a possible explanation for the difference in sound quality?A. The song was saved using fewer bits per second than the original song.
B. The song was saved using more bits per second than the original song.
C. The song was saved using a lossless compression technique.
D. Some information is lost every time a file is saved from one location on a computer to another location.

Answers

Answer:

A. The song was saved using fewer bits per second than the original song.

Explanation:

A song can be recorded on the computer or any device ranging from bit rates 96 kbps to 320 kbps.  

The lesser the bitrates the lesser the quality of the audio and when we increase the bit rates, the quality of the audio recorded gradually increases.

Bitrates of 128 kbps give us a radio like quality whereas when we use bitrates of 320 kbps we get very good or CD-like quality.

According to the scenario, the most appropriate answer is option A.

you can enter the correct range in a function by typing the beginning and ending cell references separated by a _______?

Answers

comma? i'm not sure i understan the question... do you have an example

Colon (:) is the answer.

When computer networks are connected to each other, the system is called a(n) ____.a. internet
b. LAN
c. Internet
d. WAN

Answers

LAN - Local area network :P

What is printed by the following program? var numApples = 10; var numOranges = 5; if(numApples < 20 || numOranges == numApples){ println("Hello, we are open!"); } else { println("Sorry, we are closed!"); } println("Sincerely, the grocery store");

Answers

Answer:

The output of the following code is "Hello, we are open! Sincerely, the grocery store ".

Explanation:

In the given code firstly we declare the variable that is numApples and numOranges. In this variable we assign value and the datatype of the variable is var. The var datatype can hold any type of data. Then we use the conditional statement. In the conditional statement, we use the OR logical operator. In the if block we check the condition that is if numApples variable value is less then 20 OR numOranges variable value is equal to numApples then it will print "Hello, we are open!". In the else block it will print "Sorry, we are closed!". In the last, we print "Sincerely, the grocery store".So in this question, if block is executed and the additional message is printed.