Unplugging a computer can result in the information in what location being lost?A) Floppy disc
B) Document Files
C) RAM
D) NIC

Answers

Answer 1
Answer: Unplugging a computer can result in the information in the document files being lost. It is always important to save anything you are working on before turning off a computer or unplugging the computer. A computer should never be unplugged while turned on. 
Answer 2
Answer: Unplugging a computer can result in the information in RAM being lost. The correct option among all the options that are given in the question is the third option or option "C". The computer should be properly shut down and not unplugged from the power source suddenly. This can also damage other parts of the computer as well.

Related Questions

A ___ is a large, expensive, powerful computer that can handle hundreds or thousands of connected users simultaneously.
The conceptual phase of any system or just the software facet of a system best describes the sdlc
Which of the following would BEST help a student determine the validity of a Web site?a. visitor reviews b. the publication date c. links to related sites d. the domain in the URL
What technique creates different hashes for the same password? ccna routing protocols final answers?
Adam is evaluating the security of a web server before it goes live. He believes that an issue in the code allows an SQL injection attack against the server. What term describes the issue that Adam discovered?

13. The Save As command is useful if you want to copy an open document and A. give the copy a new name.
B. remain in the original document.
C. delete the original document.
D. link it to the original document.

Answers

the answer would be A because when you first press Save As you are creating it then you would just press save every time you have tweaked it but if you wanted to shop that you had tweaked it (for example) then you would press Save As. I may be entirely wrong so don't just use my answer!!
A. give the copy a new name

A group of statisticians at a local college has asked you to create a set of functions that compute the median and mode of a set of numbers, as defined in Section 5.4. Define these functions in a module named stats.py. Also include a function named mean, which computes the average of a set of numbers. Each function should expect a list of numbers as an argument and return a single number. Each function should return 0 if the list is empty. Include a main function that tests the three statistical functions. Ask users to enter the list of numbers, and then choose which function to apply to those numbers. After the single number is returned from the correct function, display to the user the list of numbers, the function selected and the answer in a format that is easy to understand.

Answers

Answer:

from functools import reduce

def mean(mylist):

   score = reduce(lambda x,y: x + y, mylist)/ len(mylist)

   return score

def median(mylist):

   sorted(mylist)

   list_len = len(mylist) % 2

   i = round(len(mylist)/2)

   x = len(mylist)//2

   if list_len == 0:

       median = (mylist[x] + mylist[x+1]) / 2  

   else:

       median = mylist[i]

   return median

def mode(mylist):

   unique = set(mylist)

   unique = list(unique)

   collector = [mylist.count(key) for key in unique]

   maxi = max(collector)

   loc = collector.index(maxi)

   return unique[loc]

def main():

   scores = input( 'Enter list of numbers: ').split(",")

   scores = [int(score) for score in scores]

   

   operation = input('Enter operation: ')

   operator = ['mean', 'median', 'mode']

   

   for x in iter(list, 0):

       if operation in operator:

           break

       print("Invalid operation: ")

       operation = input('Enter operation')

   

   index_loc = operator.index(operation)

   

   if index_loc == 0:

       return mean(scores)

   elif index_loc == 1:

       return median(scores)

       #return np.median(scores)  can be used of the defined function

   elif index_loc == 2:

       #return stats.mode(scores)[0]  can be used of the defined function

       return mode(scores)

print( main( ) )

Explanation:

The main python function calls conditionally three statistical functions namely mean, median and mode. It prompts for user input for a list of integer numbers and a function name name to return the corresponding result.

Which type of signals travel over telephone lines​

Answers

Final Answer:

Analog signals primarily travel over telephone lines.

Explanation:

Telephone lines are designed to transmit analog signals, which are continuous waveforms representing voice or audio data. These analog signals are converted from the human voice by analog microphones and then sent over the telephone network. The telephone network, historically comprised of copper wires, was optimized for analog signal transmission.

Analog signals are characterized by their ability to convey a wide range of frequencies, allowing them to carry voice and other audio signals effectively. When you speak into a telephone, your voice is converted into analog electrical signals, which are then transmitted to the receiving end. At the receiving end, these analog signals are converted back into sound waves for the recipient to hear.

It's worth noting that modern telephone networks, especially in developed countries, have largely transitioned to digital transmission using technologies like Voice over IP (VoIP). In these cases, your voice is digitized into binary data packets for transmission over the internet. However, even in these digital systems, the initial conversion from voice to digital format often occurs at the analog-to-digital interface in your device, such as a microphone or cell phone.

Learn more about Telephone lines

brainly.com/question/31759973

#SPJ11

Answer:

analogue signals

Explanation:

When each line of text hits the margin at the same point what is the text?

Answers

When the text hits the margin, there is an invisible line that separates the texts.

What is custom software

Answers

a custom sofware is a computer program or website written specifically for your company,
A software is a program working inside of your CPU.
So a custom software means that you made it yourself to benefit your needs.

If an investigator finds a computer that is turned off during a search with a warrant, the investigator should:___________.A. turn on the computer.
B. leave the computer turned off.
C. unplug the computer from the wall.
D. none of the above

Answers

Answer:

B. leave the computer turned off.

Explanation: