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
Document preview thumbnail
Preview 4 out of 119 pages
Exam (elaborations)

ICT 394 QUIZ SESSION 05 – QUESTIONS WITH CORRECT ANSWERS – ICT 394 COMPLETE CHAPTERS / CONTENT

Document preview thumbnail
Preview 4 out of 119 pages

118 ICT questions with verified answers – all rationales included! This is a complete exam bank covering advanced ICT concepts including network protocols, security, wireless systems, SDN, routing, and IoT. Every question comes with the correct answer PLUS detailed explanations so you actually understand the material – not just memorize. What's Inside: - All 118 questions and answers from the actual quiz session - Multiple choice format with 4 options per question - Correct answers highlighted and explained - Detailed rationales for every single question - Easy to search and study on any device What You'll Actually Learn: - Network Subnetting and IP Addressing - TCP Congestion Control (Reno, Fast Recovery) - Public Key Infrastructure and Certificate Management - OpenFlow SDN Architecture - 802.11ac MU-MIMO Technology - IPv6 Neighbor Discovery Protocol - OSPF Routing and LSA Processing - SNMPv3 Security Models - IoT Protocols (RPL, CoAP, MQTT-SN) - TLS 1.3 Handshake and PSK - Raft Consensus Algorithm - OAuth 2.0 and Authorization - Convolutional Neural Networks - B+ Tree Indexing - BGP Path Selection Real Questions You'll See: Question: A network engineer receives a prefix 200.100.0.0/16 and needs to create subnets that each support exactly 255 hosts. What is the maximum number of such subnets that can be created from this prefix? ️ Answer: 128 Question: In TCP Reno, after a timeout occurs, the congestion window is set to 1 MSS. If the slow start threshold (ssthresh) was 32 before the timeout, what is the size of the congestion window (in MSS) after the first successful transmission following the timeout? ️ Answer: 1 Question: In a public-key infrastructure, which of the following is a primary reason for using a Certificate Revocation List (CRL) instead of the Online Certificate Status Protocol (OCSP) in certain high-security environments? ️ Answer: CRL allows offline verification of certificate status Who This Is For: - You, if you're taking ICT 394 or similar advanced ICT courses - You, if you have an exam coming up and you're stressed - You, if you want to study smarter, not harder Stop stressing. Start passing. Download this now and walk into your exam actually prepared.

Content preview

ICT 394 Quiz Session 05 | Questions with Correct Answers | 2026
Update myMurdoch Learning | 100% Score - 118 Questions and
Answers Already Graded A+ Premium Exam Tested And
Verified


Subject Area Information and Communication Technology

Description Comprehensive examination covering advanced topics in ICT including network
protocols, security, wireless systems, SDN, routing, and IoT. Demands deep
conceptual reasoning and multi-step analysis typical of Ivy League and R1
university assessments.

Expected Grade A+

Total Questions 118

Duration 3 hours

Learning Outcomes 1. Analyze and design complex ICT systems integrating multiple protocols and
security mechanisms.
2. Evaluate trade-offs in network architectures such as SDN, wireless, and IoT
under constraints.
3. Apply cryptographic and routing algorithms to solve practical networking
problems.

Accreditation Aligned with US university undergraduate standards for ICT programs, reflecting
latest 2026 updates in curriculum.




Page 1

,Question 1 of 118
A network engineer receives a prefix 200.100.0.0/16 and needs to create subnets that each support
exactly 255 hosts. What is the maximum number of such subnets that can be created from this
prefix?
A. 256
B. 128
C. 64
D. 512


The correct answer is:
Correct Action: 128

Rationales
• 128 (Correct):
This is the correct action. To support 255 hosts, need a subnet mask with 9 host bits (2^9 - 2 = 510 possible hosts, but 255
exact requires at least 255+2=257 addresses, so 9 bits: /23). From /16 to /23 gives 2^(23-16)=128 subnets. Option A (256)
would require /24 subnets supporting 254 hosts, not 255. Option C (64) would correspond to /22, and D (512) to /15, which
• 256 (Incorrect):
This option is not appropriate. From /16 to /23 gives 2^(23-16)=128 subnets. Option A (256) would require /24 subnets
supporting 254 hosts, not 255
• 64 (Incorrect):
This option is not appropriate. From /16 to /23 gives 2^(23-16)=128 subnets. Option A (256) would require /24 subnets
supporting 254 hosts, not 255
• 512 (Incorrect):
This option is not appropriate. From /16 to /23 gives 2^(23-16)=128 subnets. Option A (256) would require /24 subnets
supporting 254 hosts, not 255




Page 2

,Question 2 of 118
In TCP Reno, after a timeout occurs, the congestion window is set to 1 MSS. If the slow start
threshold (ssthresh) was 32 before the timeout, what is the size of the congestion window (in MSS)
after the first successful transmission following the timeout?
A. 1
B. 2
C. 16
D. 32


The correct answer is:
Correct Action: 1

Rationales
• 1 (Correct):
This is the correct action. On timeout, TCP Reno sets cwnd = 1 MSS and ssthresh = min(cwnd/2, 2) but in standard,
ssthresh is set to half of the current cwnd that existed before timeout (here 32/2=16). However, after timeout, cwnd remains
1 until the first ACK is received for the retransmitted segment. The first successful transmission itself does not change
• 2 (Incorrect):
This option is not appropriate. However, after timeout, cwnd remains 1 until the first ACK is received for the retransmitted
segment. The first successful transmission itself does not change cwnd; cwnd only increases upon receiving ACK
• 16 (Incorrect):
This option is not appropriate. However, after timeout, cwnd remains 1 until the first ACK is received for the retransmitted
segment. The first successful transmission itself does not change cwnd; cwnd only increases upon receiving ACK
• 32 (Incorrect):
This option is not appropriate. However, after timeout, cwnd remains 1 until the first ACK is received for the retransmitted
segment. The first successful transmission itself does not change cwnd; cwnd only increases upon receiving ACK




Page 3

, Question 3 of 118
In a public-key infrastructure, which of the following is a primary reason for using a Certificate
Revocation List (CRL) instead of the Online Certificate Status Protocol (OCSP) in certain
high-security environments?
A. CRL provides real-time certificate status.
B. CRL eliminates the need for a trusted third party.
C. CRL reduces bandwidth consumption by avoiding frequent queries to a responder.
D. CRL allows offline verification of certificate status.


The correct answer is:
Correct Action: CRL allows offline verification of certificate status.

Rationales
• CRL allows offline verification of certificate status. (Correct):
This is the correct action. CRLs are lists of revoked certificates that can be downloaded and used offline, enabling
verification without an online connection. OCSP requires real-time queries to a responder, which introduces latency and
potential privacy issues. Option A is false because CRLs are typically not real-time; B is false because both rely on a
• CRL provides real-time certificate status. (Incorrect):
This option is not appropriate. OCSP requires real-time queries to a responder, which introduces latency and potential
privacy issues. Option A is false because CRLs are typically not real-time; B is false because both rely on a trusted third
party; C is a possible advantage but the primary reason in high-security is offline capability
• CRL eliminates the need for a trusted third party. (Incorrect):
This option is not appropriate. OCSP requires real-time queries to a responder, which introduces latency and potential
privacy issues. Option A is false because CRLs are typically not real-time; B is false because both rely on a trusted third
party; C is a possible advantage but the primary reason in high-security is offline capability
• CRL reduces bandwidth consumption by avoiding frequent queries to a responder. (Incorrect):
This option is not appropriate. OCSP requires real-time queries to a responder, which introduces latency and potential
privacy issues. Option A is false because CRLs are typically not real-time; B is false because both rely on a trusted third
party; C is a possible advantage but the primary reason in high-security is offline capability




Page 4

Document information

Uploaded on
August 4, 2026
Number of pages
119
Written in
2026/2027
Type
Exam (elaborations)
Contains
Questions & answers
$13.49

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

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.
GlobalExamBank
4.7
(3)
Sold
13
Followers
1
Items
514
Last sold
1 month ago




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

Working on your references?

Create accurate citations in APA, MLA and Harvard with our free citation generator.

Working on your references?

Frequently asked questions