Explain how adaptability to new technologies can be taken into consideration when selecting devices for a LAN. How does this affect the cost calculations?

What will be an ideal response?

When selecting devices for a LAN it is important to allow for future growth. Growth consists of more
user devices, more capabilities, more speed, and also new technology. To allow for growth, devices
will need to be selected that go beyond the current need of the LAN in terms of number of ports, sup
ported speeds, and capabilities. Devices need to have empty slots that allow the addition of modules
that have more capabilities or that support new technologies. That affects the cost calculation because
the costs will seem high compared to the current network needs. In the long run, this up-front investment might save money, though.

Computer Science & Information Technology

You might also like to view...

Consider an algorithm that contains loops of the form:

for (x = 1 through n ) { for (y = 1 through x) { for (z = 1 through 10 ) { Task T } // end for } // end for } // end for If task T requires t time units, the loop on y requires ______ time units. a) 10 t b) (10 t) + x c) 10 t x d) t x

Computer Science & Information Technology

Given the following function declaration and local variable declarations, which of the following is not a correct function call?

int myInt; float myFloat; char ch; void someFunction(int& first, float second, char third); a. someFunction(1, 2.0, ch); b. someFunction(myInt, myFloat, ch); c. someFunction(myInt, 2.0, 'c'); d. someFunction(myInt, myFloat, '1');

Computer Science & Information Technology