A star topology is:

a. difficult to manage because the central computer receives and routes all messages in the network
b. dependent upon the capacity of the central computer for its performance
c. always slower than a ring network
d. less susceptible to traffic problems than other architectures
e. not affected if the central computer fails


Ans: b. dependent upon the capacity of the central computer for its performance

Computer Science & Information Technology

You might also like to view...

What is wrong with the following recursive function? It should print out the array backwards.

void print(int array[], int start, int size) { if(start == size) return; else { print(array, start-1,size); cout << array[start] << endl; } } a. infinite recursion b. the stopping condition is wrong c. the recursive call is wrong d. A and C e. nothing

Computer Science & Information Technology

A(n) _____ search requires the search engine to find pages that include a particular sentence with words in a specified order.

A. matching-phrase B. exact-phrase C. Boolean D. keywords

Computer Science & Information Technology

A(n) ________ allows a user to point and click on objects to initiate commands

Fill in the blank(s) with correct word

Computer Science & Information Technology

When the result of a calculated field is too large to fit in a column, a series of pound signs # is displayed

Indicate whether the statement is true or false

Computer Science & Information Technology