• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/36

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

36 Cards in this Set

  • Front
  • Back
What is the Class C address range in decimal and in binary?
192–223, 110xxxxx
What layer of the DoD model is equivalent to the Transport layer of the OSI model?
Host-to-Host
What is the valid range of a Class A network address?
1–126
What is the 127.0.0.1 address used for?
Loopback or diagnostics
How do you find the network address from a listed IP address?
Turn all host bits off.
How do you find the broadcast address from a listed IP address?
Turn all host bits on.
What is the Class B private IP address space?
10.0.0.0 through 10.255.255.255
What is the Class C private IP address space?
172.16.0.0 through 172.31.255.255
What are all the available characters that you can use in hexadecimal addressing?
192.168.0.0 through 192.168.255.255
What are all the available characters that you can use in hexadecimal addressing?
0–9 and A, B, C, D, E, and F
What are the decimal and hexadecimal equivalents of the binary number 10011101?
(Choose two.)
A. 159
B. 157
C. 185
D. 0x9D
E. 0xD9
F. 0x159
B, D. To turn a binary number into decimal, you just have to add the values of each bit that
is a 1. The values of 10011101 are 128, 16, 8, 4, and 1. 128 + 16 + 8 + 4 + 1 = 157. Hexadecimal
is a base-16 number system. The values of hexadecimal are 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A,
B, C, D, E, F—16 characters total, from which to create all the numbers you’ll ever need. So,
if 1001 in binary is 9, then the hexadecimal equivalent is 9. Since we then have 1101, which
is 13 in binary, the hexadecimal answer is D and the complete hexadecimal answer is 0x9D.
Even though binary/hex numbers were discussed in Chapter 1, a good review is necessary here.
Which of the following allows a router to respond to an ARP request that is intended for a
remote host?
A. Gateway DP
B. Reverse ARP (RARP)
C. Proxy ARP
D. Inverse ARP (IARP)
E. Address Resolution Protocol (ARP)
C. Proxy ARP can help machines on a subnet reach remote subnets without configuring routing
or a default gateway.
You want to implement a mechanism that automates the IP configuration, including IP
address, subnet mask, default gateway, and DNS information. Which protocol will you use
to accomplish this?
A. SMTP
B. SNMP
C. DHCP
D. ARP
C. Dynamic Host Configuration Protocol (DHCP) is used to provide IP information to hosts
on your network. DHCP can provide a lot of information, but the most common is IP address,
subnet mask, default gateway, and DNS information.
What protocol is used to find the hardware address of a local device?
A. RARP
B. ARP
C. IP
D. ICMP
E. BootP
B. Address Resolution Protocol (ARP) is used to find the hardware address from a known
IP address.
Which of the following are layers in the TCP/IP model? (Choose three.)
A. Application
B. Session
C. Transport
D. Internet
E. Data Link
F. Physical
A, C, D. This seems like a hard question at first because it doesn’t make sense. The listed
answers are from the OSI model and the question asked about the TCP/IP protocol stack (DoD
model). However, let’s just look for what is wrong. First, the Session layer is not in the TCP/
IP model; neither are the Data Link and Physical layers. This leaves us with the Transport layer
(Host-to-Host in the DoD model), Internet layer (Network layer in the OSI), and Application
layer (Application/Process in the DoD).
Which class of IP address provides a maximum of only 254 host addresses per network ID?
A. Class A
B. Class B
C. Class C
D. Class D
E. Class E
C. A Class C network address has only 8 bits for defining hosts: 28 – 2 = 254.
Which of the following describe the DHCP Discover message? (Choose two.)
A. It uses FF:FF:FF:FF:FF:FF as a layer 2 broadcast.
B. It uses UDP as the Transport layer protocol.
C. It uses TCP as the Transport layer protocol.
D. It does not use a layer 2 destination address.
A, B. A client that sends out a DHCP Discover message in order to receive an IP address
sends out a broadcast at both layer 2 and layer 3. The layer 2 broadcast is all Fs in hex, or
FF:FF:FF:FF:FF:FF. The layer 3 broadcast is 255.255.255.255, which means all networks and
all hosts. DHCP is connectionless, which means it uses User Datagram Protocol (UDP) at the
Transport layer, also called the Host-to-Host layer.
Which layer 4 protocol is used for a Telnet connection?
A. IP
B. TCP
C. TCP/IP
D. UDP
E. ICMP
B. Although Telnet does use TCP and IP (TCP/IP), the question specifically asks about layer 4,
and IP works at layer 3. Telnet uses TCP at layer 4.
Which statements are true regarding ICMP packets? (Choose two.)
A. They acknowledge receipt of a TCP segment.
B. They guarantee datagram delivery.
C. They can provide hosts with information about network problems.
D. They are encapsulated within IP datagrams.
E. They are encapsulated within UDP datagrams.
C, D. Internet Control Message Protocol (ICMP) is used to send error messages through the
network, but they do not work alone. Every segment or ICMP payload must be encapsulated
within an IP datagram (or packet).
10. Which of the following services use TCP? (Choose three.)
A. DHCP
B. SMTP
C. SNMP
D. FTP
E. HTTP
F. TFTP
B, D, E. SMTP, FTP, and HTTP use TCP.
Which of the following services use UDP? (Choose three.)
A. DHCP
B. SMTP
C. SNMP
D. FTP
E. HTTP
F. TFTP
11. A, C, F. Explanation:DHCP, SNMP, and TFTP use UDP. SMTP, FTP, and HTTP use TCP.
12. Which of the following are TCP/IP protocols used at the Application layer of the OSI model?
(Choose three.)
A. IP
B. TCP
C. Telnet
D. FTP
E. TFTP
C, D, E. Telnet, File Transfer Protocol (FTP), and Trivial FTP (TFTP) are all Application layer
protocols. IP is a Network layer protocol. Transmission Control Protocol (TCP) is a Transport
layer protocol.
If you use either Telnet or FTP, which is the highest layer you are using to transmit data?
A. Application
B. Presentation
C. Session
D. Transport
A. Both FTP and Telnet use TCP at the Transport layer; however, they both are Application
layer protocols, so the Application layer is the best answer for this question.
The DoD model (also called the TCP/IP stack) has four layers. Which layer of the DoD model
is equivalent to the Network layer of the OSI model?
A. Application
B. Host-to-Host
C. Internet
D. Network Access
C. The four layers of the DoD model are Application/Process, Host-to-Host, Internet, and Network
Access. The Internet layer is equivalent to the Network layer of the OSI model.
Which two of the following are private IP addresses?
A. 12.0.0.1
B. 168.172.19.39
C. 172.20.14.36
D. 172.33.194.30
E. 192.168.24.43
C, E. Class A private address range is 10.0.0.0 through 10.255.255.255. Class B private
address range is 172.16.0.0 through 172.31.255.255, and Class C private address range is
192.168.0.0 through 192.168.255.255.
What layer in the TCP/IP stack is equivalent to the Transport layer of the OSI model?
A. Application
B. Host-to-Host
C. Internet
D. Network Access
B. The four layers of the TCP/IP stack (also called the DoD model) are Application/Process,
Host-to-Host, Internet, and Network Access. The Host-to-Host layer is equivalent to the
Transport layer of the OSI model.
Which statements are true regarding ICMP packets? (Choose two)
A. ICMP guarantees datagram delivery.
B. ICMP can provide hosts with information about network problems.
C. ICMP is encapsulated within IP datagrams.
D. ICMP is encapsulated within UDP datagrams.
B, C. ICMP is used for diagnostics and destination unreachable messages. ICMP is encapsulated
within IP datagrams, and because it is used for diagnostics, it will provide hosts with
information about network problems.
What is the address range of a Class B network address in binary?
A. 01xxxxxx
B. 0xxxxxxx
C. 10xxxxxx
D. 110xxxxx
C. The range of a Class B network address is 128–191. This makes our binary range
10xxxxxx.
20. Which of the following protocols uses both TCP and UDP?
A. FTP
B. SMTP
C. Telnet
D. DNS
D. DNS uses TCP for zone exchanges between servers and UDP when a client is trying to
resolve a hostname to an IP address.
Process/Application Layer Protocols and programs.
Telnet is a terminal emulation program
that allows you to log into a remote host and run programs. File Transfer Protocol (FTP) is a
connection-oriented service that allows you to transfer files. Trivial FTP (TFTP) is a connectionless
file transfer program. Simple Mail Transfer Protocol (SMTP) is a send-mail program.
Host-to-Host layer protocols
Transmission Control Protocol (TCP) is a
connection-oriented protocol that provides reliable network service by using acknowledgments
and flow control. User Datagram Protocol (UDP) is a connectionless protocol that provides
low overhead and is considered unreliable.
Internet layer protocols.
Internet layer protocols. Internet Protocol (IP) is a connectionless protocol
that provides network address and routing through an internetwork. Address Resolution Protocol
(ARP) finds a hardware address from a known IP address. Reverse ARP (RARP) finds
an IP address from a known hardware address. Internet Control Message Protocol (ICMP)
provides diagnostics and destination unreachable messages.
Class A range.
The IP range for a Class A network is 1–126. This provides 8
bits of network addressing and 24 bits of host addressing by default.
Class B range.
The IP range for a Class B network is 128–191. Class B
addressing provides 16 bits of network addressing and 16 bits of host addressing by default.
Class C range.
The IP range for a Class C network is 192–223. Class C
addressing provides 24 bits of network addressing and 8 bits of host addressing by default.
Private IP ranges.
Class A -> 10.0.0.0
through 10.255.255.255.
Class B -> 172.16.0.0 through 172.31.255.255.
Class C -> 192.168.0.0 through 192.168.255.255.