Review Questions CH1


What is name of the unique physical address that is assigned to every network interface card?
  1. IP address
  2. Hostname
  3. MAC address
  4. NetBIOS name
 
How many bits are used to create an IPv4 address?
  1. 8
  2. 6
  3. 32
  4. 64
 
If you have a Class B address with a default subnet mask and you need to create eight subnets, then which of the following subnet masks should you use?
  1. 255.255.255.240
  2. 255.255.224.0
  3. 255.255.240.0
  4. 255.240.0.0
 
Which of the following IP addresses are valid only for private IP addressing that is filtered from the Internet? (Choose two.)
  1. 10.1.1.1
  2. 172.17.255.254
  3. 11.1.2.4
  4. 193.168.2.1
 
Which information directory protocol is the standard for file transfer over the Internet?
  1. TCP
  2. UDP
  3. FTP
  4. HTTP
 
Which of the following layers of the OSI model is responsible for logical addressing?
  1. Application
  2. Transport
  3. Data Link
  4. Network
 
Which layer of the TCP/IP protocol suite loosely aligns to three layers of the OSI model?
  1. Transport
  2. Network Interface
  3. Application
  4. Presentation
 
Which of the following is a Session layer protocol that is primarily responsible for setting up and tearing down voice and video calls over the Internet?
  1. SIP
  2. RTP
  3. HTTP
  4. FTP
 
Which of the following is an example of an IPv6 address?
  1. 192.168.1.1
  2. C0-FF-EE-C0-FF-EE
  3. fe80::216:deff:ee09:6d13
  4. ef90::451:defe::ee09:6d13
 
Which of the following subnet masks should you use to obtain 100 subnets from a Class B network?
  1. 255.255.254.0
  2. 255.254.0.0
  3. 255.255.255.128
  4. There isn't enough information to answer the question.
 
Answers
1. 
C. A Media Access Control (MAC) address is a unique physical address that is assigned to each network interface card. MAC addresses are “burned in” to the card at the manufacturer.
2. 
C. An IPv4 address is a 32-bit address. It is composed of four sections of 8 bits each, called octets. Each octet is converted to decimal for configuration purposes, but the computer uses the entire 32-bit address for communication.
3. 
B. If you have a Class B address with a default subnet mask, then the current subnet mask is 255.255.0.0. This means you have 16 bits for networks and 16 bits for hosts. If you want to create eight subnets, then you need to solve for 2s > 8. Solving for s, you can determine that you need to use the first 3 bits from the network address to create the subnets. The values of the first 3 bits total 224 (128 + 64 + 32), so the new subnet mask is 255.255.224.0.
4. 
A., B. The valid private address ranges include the following:
  • 192.168.0.0-192.168.255.255
  • 172.16.0.0-172.31.255.255
  • 10.0.0.0-10.255.255.255
Only answers A and B fall into these ranges.

5. 
C. FTP is an Application layer protocol that uses TCP ports 20 and 21. It is the standard protocol used for file transfer over the Internet.
6. 
D. The Network layer of the OSI model is responsible for logical addressing. In most networks today, this is in the form of an IP address.
7. 
C. The Application layer of the TCP/IP protocol suite loosely aligns to the Application, Presentation, and Session layers of the OSI model.
8. 
A. Session Initiation Protocol (SIP) is a Session layer protocol that is primarily responsible for setting up and tearing down voice and video calls over the Internet. It also enables IP telephony networks to utilize advanced call features such as SS7.
9. 
C. An IPv6 address is a 128-bit binary address that is expressed as a hexadecimal address. Leading 0s can be omitted and successive fields of 0s can be represented as ::.
10. 
A. A Class B network will by definition have a subnet mask of 255.255.0.0. This means you have 16 host bits with which to work to create 100 subnets. To determine the number of subnets you need, you use the formula 2s 100. Solving for s, you can determine that you need 7 host bits, since 26 = 64 but 27 = 128. This means that the 128, 64, 32, 16, 8, 4, and 2 values in the third octet will now count in the subnet mask. Adding these values, you get 254, so the new subnet mask is 254.

Popular posts from this blog

ch11 review silberschatz operating systems concepts essentials 2nd ed