As the network engineer, you are asked to design an IP subnet plan that calls for 5 subnets. The largest subnet needs 25 hosts. Management requires that a single mask must be used throughout the Class C network. Which of the following is a public IP network and mask that would meet the requirements?

A) 192.177.4.0 / 255.255.255.192
B) 192.177.4.0 / 255.255.255.224
C) 192.177.4.0 / 255.255.255.240
D) 192.177.4.0 / 255.255.255.248


B
Explanation: B) The correct answer is 192.177.4.0 / 255.255.255.224 because the only mask that would fit the requirements of 5 subnets and 25 hosts is 255.255.255.224, or /27, which would give you 8 subnets and 30 hosts per subnet.

Computer Science & Information Technology

You might also like to view...

When this is run, we sometimes get the following puzzling output: Array elements 9 and 10 are out of order. Even more puzzling, sometimes we don’t get this output. Why?

Suppose we want an array to satisfy the condition, ``` a[0] <= a[1] <= a[2] <= ... ``` And suppose this code is written to implement a test of this condition ``` #include using namespace std; int main() { double array[10] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }; // assume the array is filled somehow. for(int i=0; i < 10; i++) if (array[i] > array[i+1]) cout << "Array elements " << i << " and " << i + 1 << " are out of order.\n"; } When this is run, we sometimes get the following puzzling output: Array elements 9 and 10 are out of order. Even more puzzling, sometimes we don’t get this output. Why? ```

Computer Science & Information Technology

Tracy is in a meeting with an important client and wants to know how she can keep her smartphone from interrupting the meeting. She does not want to receive notifications, emails, text messages, or phone calls, but would like to leave her phone on so that she can take notes on the phone.   What setting can Tracy use on her phone to make sure she is not interrupted during the meeting?

A. Silent mode. B. Vibrate mode. C. Airplane mode. D. No setting will prevent interruptions while Tracy is in the meeting.

Computer Science & Information Technology

When an object is used as a(n) ____ to a method, what gets passed is a reference to the object and not the object itself.

A. variable B. element C. initializer D. parameter

Computer Science & Information Technology

Describe the three basic alternatives of ownership of assets and facilities in an outsourcing contract

What will be an ideal response?

Computer Science & Information Technology