As the network engineer, you are asked to design an IP subnet plan that calls for 5 subnets. The largest subnet needs a minimum of 5000 hosts. Management requires that a single mask must be used throughout the Class B network. Which of the following is a public IP network and mask that would meet the requirements?
A) 152.77.0.0/19
B) 152.77.0.0/18
C) 152.77.0.0/21
D) 152.77.0.0/17
A
Explanation: A) The correct answer is 152.77.0.0/19 because the only mask that would fit the requirements of 5 subnets and 5000 hosts is /19, or 225.255.224.0, which provides 8 subnets and 8190 hosts per subnet.
You might also like to view...
On Format, On Print, and On Retreat are all report ____________________ events.
Fill in the blank(s) with the appropriate word(s).
Assume that the user has entered the value 27 into ageJTextField. Determine what is displayed in outputJTextField by the following code:
``` 1 int age = Integer.parseInt( ageJTextField.getText() ); 2 3 if ( age < 0 ) 4 { 5 outputJTextField.setText( 6 "Enter a value greater than or equal to zero." ); 7 } 8 else if ( age < 13 ) 9 { 10 outputJTextField.setText( "Child" ); 11 } 12 else if ( age < 20 ) 13 { 14 outputJTextField.setText( "Teenager" ); 15 } 16 else if ( age < 30 ) 17 { 18 outputJTextField.setText( "Young Adult" ); 19 } 20 else if ( age < 65 ) 21 { 22 outputJTextField.setText( "Adult" ); 23 } 24 else 25 { 26 outputJTextField.setText( "Senior Citizen" ); 27 } ```
____ is a professional web-based project collaboration tool that focused on collaboration and communication between you and your client.
A. Basecamp B. Protoshare C. OverSight D. Adobe Proto
In the statementint* p, q;p and q are pointer variables.
Answer the following statement true (T) or false (F)