Written by students who passed Immediately available after payment Read online or as PDF Wrong document? Swap it for free 4.6 TrustPilot
logo-home
Exam (elaborations)

CS6250 Computer Networks – Exam 2 (Latest 2026) – Complete A+ Guide

Rating
-
Sold
-
Pages
57
Grade
A+
Uploaded on
26-03-2026
Written in
2025/2026

Ace your CS6250 Computer Networks exam with this comprehensive 300-question review guide. Covers subnetting, routing protocols (OSPF, BGP, RIP), TCP/IP, IPv6, network security, wireless networks, MPLS, and more. Each question includes detailed rationales for a complete understanding of networking concepts.

Show more Read less
Institution
CS6250 Computer Networks
Course
CS6250 Computer Networks

Content preview

CS6250 Computer Networks – Exam 2 (Latest 2026) –
Complete A+ Guide




Section 1: Network Layer & IP Addressing (Questions 1-50)
Scenario 1: A network administrator is designing a subnetting scheme for a Class B
network 172.16.0.0/16 to support 8 subnets.

1. What is the minimum number of subnet bits needed to create 8 subnets?
o A. 2 bits
o B. 3 bits
o C. 4 bits
o D. 5 bits
o Answer: B. 3 bits
o Rationale: 2³ = 8 subnets. Three subnet bits are required to create exactly 8 subnets.
2. After borrowing 3 bits from the host portion of 172.16.0.0/16, what is the new subnet
mask?
o A. 255.255.224.0
o B. 255.255.240.0
o C. 255.255.248.0
o D. 255.255.255.0
o Answer: A. 255.255.224.0
o Rationale: /16 plus 3 bits = /19. 255.255.224.0 = /19.
3. How many host addresses are available per subnet after borrowing 3 bits from a Class B
/16 network?
o A. 2,046
o B. 4,094
o C. 8,190
o D. 16,382
o Answer: C. 8,190
o Rationale: 16 total bits for hosts minus 3 subnet bits = 13 host bits. 2¹³ = 8,192
addresses minus 2 (network and broadcast) = 8,190 usable hosts.

Scenario 2: An IPv4 packet has a Time-to-Live (TTL) field of 32. The packet passes
through 8 routers before reaching its destination.

,4. What is the TTL value when the packet arrives at the destination?
o A. 24
o B. 25
o C. 32
o D. 40
o Answer: A. 24
o Rationale: Each router decrements the TTL by 1. 32 - 8 = 24.
5. If the TTL field reaches 0 before reaching the destination, what happens?
o A. The packet is forwarded to the next router
o B. The packet is delivered but with a warning
o C. The packet is discarded and an ICMP Time Exceeded message is sent back to the
source
o D. The TTL is reset to 32
o Answer: C. The packet is discarded and an ICMP Time Exceeded message is sent
back to the source
o Rationale: When TTL reaches 0, the router discards the packet and sends an ICMP Time
Exceeded message to the source to prevent infinite looping.

Scenario 3: A network uses CIDR notation with the address block 192.168.10.0/26.

6. What is the subnet mask for 192.168.10.0/26?
o A. 255.255.255.0
o B. 255.255.255.128
o C. 255.255.255.192
o D. 255.255.255.224
o Answer: C. 255.255.255.192
o Rationale: /26 means 26 network bits; 26 bits = 255.255.255.192.
7. How many host addresses are available in this subnet?
o A. 32
o B. 62
o C. 64
o D. 126
o Answer: B. 62
o Rationale: 2⁶ = 64 total addresses minus 2 (network and broadcast) = 62 usable hosts.
8. What is the broadcast address for the subnet 192.168.10.0/26?
o A. 192.168.10.63
o B. 192.168.10.64
o C. 192.168.10.127
o D. 192.168.10.255

,o Answer: A. 192.168.10.63
o Rationale: The subnet ranges from 192.168.10.0 to 192.168.10.63. Broadcast is the last
address.

Scenario 4: A router receives a packet destined for 10.1.2.3. The routing table has the
following entries: 10.1.2.0/24 via Interface A, 10.1.0.0/16 via Interface B, 0.0.0.0/0 via
Interface C.

9. Which route will the router use to forward the packet?
o A. 10.1.2.0/24 via Interface A
o B. 10.1.0.0/16 via Interface B
o C. 0.0.0.0/0 via Interface C
o D. The packet will be dropped
o Answer: A. 10.1.2.0/24 via Interface A
o Rationale: Longest prefix match rule applies. 10.1.2.0/24 has a longer prefix (24 bits)
than 10.1.0.0/16 (16 bits), so it is preferred over the default route.
10. If the destination IP was 10.2.3.4, which route would be used?
o A. 10.1.2.0/24 via Interface A
o B. 10.1.0.0/16 via Interface B
o C. 0.0.0.0/0 via Interface C
o D. The packet will be dropped
o Answer: C. 0.0.0.0/0 via Interface C
o Rationale: 10.2.3.4 does not match either specific route, so the default route is used.

Scenario 5: An IPv4 packet has a total length of 1,500 bytes. The header length is 20
bytes.

11. What is the payload (data) size of this packet?
o A. 1,480 bytes
o B. 1,500 bytes
o C. 1,520 bytes
o D. 20 bytes
o Answer: A. 1,480 bytes
o Rationale: Total length = header + payload. 1,500 - 20 = 1,480 bytes.
12. If this packet must traverse a network with an MTU of 1,000 bytes, how many fragments
will be created?
o A. 1 fragment
o B. 2 fragments
o C. 3 fragments

, o D. 4 fragments
o Answer: B. 2 fragments
o Rationale: 1,480 bytes of payload. MTU 1,000 minus 20 header = 980 bytes max
payload per fragment. 1,480 ÷ 980 = 1.51, so 2 fragments.
13. Which field in the IPv4 header is used to reassemble fragments at the destination?
o A. Identification
o B. Fragment Offset
o C. More Fragments flag
o D. All of the above
o Answer: D. All of the above
o Rationale: Identification identifies which packet the fragment belongs to; Fragment
Offset indicates position; More Fragments flag indicates if more fragments follow.

Scenario 6: A network uses Classless Inter-Domain Routing (CIDR) with the address
block 10.0.0.0/22.

14. How many total IP addresses are in this block?
o A. 1,024
o B. 2,048
o C. 4,096
o D. 8,192
o Answer: A. 1,024
o Rationale: 32 - 22 = 10 host bits. 2¹⁰ = 1,024 total addresses.
15. What is the network address for 10.0.0.0/22?
o A. 10.0.0.0
o B. 10.0.1.0
o C. 10.0.2.0
o D. 10.0.4.0
o Answer: A. 10.0.0.0
o Rationale: /22 uses 22 bits for network; 10.0.0.0 is the first address in the block.
16. What is the broadcast address for 10.0.0.0/22?
o A. 10.0.3.255
o B. 10.0.4.255
o C. 10.0.0.255
o D. 10.0.1.255
o Answer: A. 10.0.3.255
o Rationale: /22 block spans 10.0.0.0 through 10.0.3.255. Broadcast is the last address.

Scenario 7: An IPv6 address is 2001:0db8:85a3:0000:0000:8a2e:0370:7334.

Written for

Institution
CS6250 Computer Networks
Course
CS6250 Computer Networks

Document information

Uploaded on
March 26, 2026
Number of pages
57
Written in
2025/2026
Type
Exam (elaborations)
Contains
Questions & answers
$28.49
Get access to the full document:

Wrong document? Swap it for free Within 14 days of purchase and before downloading, you can choose a different document. You can simply spend the amount again.
Written by students who passed
Immediately available after payment
Read online or as PDF

Get to know the seller

Seller avatar
Reputation scores are based on the amount of documents a seller has sold for a fee and the reviews they have received for those documents. There are three levels: Bronze, Silver and Gold. The better the reputation, the more your can rely on the quality of the sellers work.
PremiumExamBank Chamberlain College Of Nursng
View profile
Follow You need to be logged in order to follow users or courses
Sold
290
Member since
2 year
Number of followers
64
Documents
5130
Last sold
1 day ago
TEST BANKS AND ALL KINDS OF EXAMS SOLUTIONS

TESTBANKS, SOLUTION MANUALS & ALL EXAMS SHOP!!!! TOP 5_star RATED page offering the very best of study materials that guarantee Success in your studies. Latest, Top rated & Verified; Testbanks, Solution manuals & Exam Materials. You get value for your money, Satisfaction and best customer service!!! Buy without Doubt..

4.8

1047 reviews

5
933
4
73
3
25
2
10
1
6

Trending documents

Recently viewed by you

Why students choose Stuvia

Created by fellow students, verified by reviews

Quality you can trust: written by students who passed their tests and reviewed by others who've used these notes.

Didn't get what you expected? Choose another document

No worries! You can instantly pick a different document that better fits what you're looking for.

Pay as you like, start learning right away

No subscription, no commitments. Pay the way you're used to via credit card and download your PDF document instantly.

Student with book image

“Bought, downloaded, and aced it. It really can be that simple.”

Alisha Student

Frequently asked questions