Which type of network treats all processors equally, and allows peripheral devices to be shared without going to a separate server?

Answers

Answer 1
Answer: The correct answer is P2P or peer-to-peer servers.

Hope I helped ;)

Related Questions

What are the latest measure of data transfer
In C language.int z,x=5, y=-10, a=4, b=2 z=x++ - --y * b / a what number will z in the sample contain? a. 5 b. 6 c. 10 d. 11
What are factors which contributed to the reduction in size of the first generation computers to the size it is today?
___ are files of related records organized according to logical systems and stored on computer-accessible media.
NEED ANSWER ASAPLance has three tables in his database. He wants to generate a report to show data from the three tables. So, he decides to link the tables. What type of fields will help Lance to create the relationships? Lance will have to identify the ________ in his tables to help him link the tables.

Which of the following is NOT an example of a visual?A. a diagram of the human cardiovascular system
B. a map that shows the topography of Haiti
C. a link to a Web site that shows pictures of coral reefs
D. a chart listing results of a scientific study about ultraviolet radiation

Answers

chart listing results of a scientific study about ultraviolet radiation is NOT an example of a visual.I think D is the correct answer

Answer:

(D) A chart listing results of a scientific study about ultra violent radiation.

Explanation:

Visual is something that an individual can see with his/her two eyes. Where as ultraviolet Ultraviolet is electromagnetic emission with a wavelength from 10 nm to 400 nm, lower than that of apparent light but greater than X-rays. UV radiation is already in sunlight composing about 10% of the entire light amount of the Sun.

Rina has misspelled a word many times in her document. Which is the fastest way she can correct the mistake?A. Use the replace all button to replace the misspelled word with the correct spelling.

B. Use the thesaurus to replace the misspelled word with the correct spelling.

C. Use the spell checker to correct all misspelled words.

D. Use "Find" to find each place she misspelled a word.

Answers

A) Use the replace all button

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 asynchronous electronic community is also known as a forum?

Answers

Yes. Or also known as a message board.

The basic premise of ___________is that objects can be tagged, tracked, and monitored through a local network, or across the Internet.

Answers

Answer:

Radio Frequency Identification (RFID)

Explanation:

A Radio Frequency Identification uses a tag that is made up of of a tiny radio receiver and transmitter, that transmits digital data when it receives an electromagnetic pulse from a nearby RFID reader device. This makes it possible to track an item, animals, or even a person by placing a RFID tag on it, and then monitor the tagged object over a network.

true/false: for all n, an algorithm which is o(n2) will be slower than an algorithm which is o(n log n). g

Answers

True. I had this assignment a while back