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 107 pages
Exam (elaborations)

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

Document preview thumbnail
Preview 4 out of 107 pages

106 ICT questions with verified answers – all rationales included! This is a complete exam bank covering advanced ICT concepts including network protocols, security architectures, cloud computing, IoT systems, and emerging technologies. Every question comes with the correct answer PLUS detailed explanations so you actually understand the material – not just memorize. What's Inside: - All 106 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: - TCP Congestion Control and Reno Algorithm - IPsec VPNs vs TLS VPNs - SDN Security Vulnerabilities - 5G Network Slicing and QoS - Bitcoin Proof of Work Difficulty Adjustment - Cloud Shared Responsibility Model - Docker Containers vs Virtual Machines - Fairness and Bias in Machine Learning - Edge Computing vs Fog Computing - Quantum Key Distribution (BB84 Protocol) - Zero Trust Architecture and Micro-segmentation - AWS Lambda and Serverless Computing - Data Structures (Trie, Fibonacci Heap) - Merge Sort on Linked Lists - CAP Theorem and Distributed Systems - Kerberos Authentication - Bell-LaPadula Model - WPA3 SAE Handshake - TLS 1.3 Handshake - SQL Injection Prevention - NIST Cybersecurity Framework - OWASP Top 10 - Incident Response and Forensics - RBAC and Access Control Models Real Questions You'll See: Question: In TCP congestion control, what is the primary reason that the threshold (ssthresh) is set to half of the current congestion window (cwnd) when a triple duplicate ACK is received, rather than setting it to a fixed value? ️ Answer: To adapt to the network's actual capacity estimate at the time of loss Question: In the context of IPSec, which of the following best explains why it is considered more suitable for site-to-site VPNs compared to TLS-based VPNs? ️ Answer: IPSec operates at the network layer, thus transparently protecting all IP traffic without application modification Question: In software-defined networking (SDN), the separation of the control plane from the data plane introduces which fundamental security vulnerability that is not present in traditional networks? ️ Answer: Increased attack surface due to a centralized controller that can be a single point of failure Question: In the Bitcoin blockchain, why is the proof-of-work (PoW) difficulty adjusted approximately every two weeks (2016 blocks) rather than keeping it constant? ️ Answer: To ensure that the average block time remains near 10 minutes despite changes in total hashing power 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 06 | Questions with Correct Answers |
myMurdoch Learning | 2026 Update | 100% Score. - 106
Questions and Answers Already Graded A+ Premium Exam
Tested And Verified


Subject Area Information and Communication Technology

Description This exam covers advanced topics in ICT including network protocols, security
architectures, cloud computing, IoT systems, and emerging technologies. It
assesses deep conceptual understanding and the ability to apply principles to
complex scenarios.

Expected Grade A+

Total Questions 106

Duration 3 hours

Learning Outcomes 1. Analyze and compare network congestion control algorithms
2. Evaluate security mechanisms in internet protocols
3. Differentiate cloud service models and their responsibility boundaries
4. Assess trade-offs in IoT edge and fog computing architectures
5. Understand quantum key distribution protocols

Accreditation Meets US university standards for upper-division undergraduate and
graduate-level ICT courses.




Page 1

,Question 1 of 106
In TCP congestion control, what is the primary reason that the threshold (ssthresh) is set to half of
the current congestion window (cwnd) when a triple duplicate ACK is received, rather than setting it
to a fixed value?
A. To ensure fast convergence of the additive increase phase
B. To adapt to the network's actual capacity estimate at the time of loss
C. To guarantee fairness among competing TCP flows
D. To minimize the retransmission timeout (RTO) value


The correct answer is:
Correct Action: To adapt to the network's actual capacity estimate at the time of loss

Rationales
• To adapt to the network's actual capacity estimate at the time of loss (Correct):
This is the correct action. Setting ssthresh to half of cwnd uses the current window size as a proxy for the path capacity
before loss, allowing the algorithm to quickly probe the new available bandwidth. Fixed values would not adapt to varying
network conditions. Fast convergence (A) is a secondary effect, fairness (C) is addressed by AIMD, and RTO (D) is
• To ensure fast convergence of the additive increase phase (Incorrect):
This option is not appropriate. Fixed values would not adapt to varying network conditions. Fast convergence (A) is a
secondary effect, fairness (C) is addressed by AIMD, and RTO (D) is unrelated
• To guarantee fairness among competing TCP flows (Incorrect):
This option is not appropriate. Fixed values would not adapt to varying network conditions. Fast convergence (A) is a
secondary effect, fairness (C) is addressed by AIMD, and RTO (D) is unrelated
• To minimize the retransmission timeout (RTO) value (Incorrect):
This option is not appropriate. Fixed values would not adapt to varying network conditions. Fast convergence (A) is a
secondary effect, fairness (C) is addressed by AIMD, and RTO (D) is unrelated




Page 2

,Question 2 of 106
In the context of IPSec, which of the following best explains why it is considered more suitable for
site-to-site VPNs compared to TLS-based VPNs?
A. IPSec operates at the network layer, thus transparently protecting all IP traffic without application modification
B. TLS VPNs require a central authentication server, whereas IPSec uses distributed credential stores
C. IPSec provides stronger encryption algorithms than those supported by TLS 1.3
D. TLS VPNs cannot handle multicast or broadcast traffic, while IPSec does so natively


The correct answer is:
Correct Action: IPSec operates at the network layer, thus transparently protecting all IP traffic without
application modification

Rationales
• IPSec operates at the network layer, thus transparently protecting all IP traffic without application
modification (Correct):
This is the correct action. IPSec works at the network layer (IP), so it secures all IP packets without requiring changes to
applications or protocols. TLS operates at the transport layer and typically requires a VPN gateway and application-level
proxy. Option B is false-both can use centralized auth. C: encryption strengths are comparable. D: TLS VPNs can use
• TLS VPNs require a central authentication server, whereas IPSec uses distributed credential stores
(Incorrect):
This option is not appropriate. TLS operates at the transport layer and typically requires a VPN gateway and
application-level proxy. Option B is false-both can use centralized auth
• IPSec provides stronger encryption algorithms than those supported by TLS 1.3 (Incorrect):
This option is not appropriate. TLS operates at the transport layer and typically requires a VPN gateway and
application-level proxy. Option B is false-both can use centralized auth
• TLS VPNs cannot handle multicast or broadcast traffic, while IPSec does so natively (Incorrect):
This option is not appropriate. TLS operates at the transport layer and typically requires a VPN gateway and
application-level proxy. Option B is false-both can use centralized auth




Page 3

, Question 3 of 106
In software-defined networking (SDN), the separation of the control plane from the data plane
introduces which fundamental security vulnerability that is not present in traditional networks?
A. Increased attack surface due to a centralized controller that can be a single point of failure
B. Inability to encrypt traffic between switches because of limited processing power
C. Susceptibility to ARP spoofing attacks targeting the controller
D. Lack of authentication mechanisms between switches and controllers


The correct answer is:
Correct Action: Increased attack surface due to a centralized controller that can be a single point of failure

Rationales
• Increased attack surface due to a centralized controller that can be a single point of failure (Correct):
This is the correct action. Centralizing the control plane creates a high-value target; if compromised, the entire network is
controlled. Traditional distributed control planes are more resilient to controller-specific attacks. Options B and D are
mitigable: encryption is possible, and auth (e.g., TLS) is standard. C: ARP spoofing exists in both, not unique to SDN.
• Inability to encrypt traffic between switches because of limited processing power (Incorrect):
This option is not appropriate. Traditional distributed control planes are more resilient to controller-specific attacks.
Options B and D are mitigable: encryption is possible, and auth (e
• Susceptibility to ARP spoofing attacks targeting the controller (Incorrect):
This option is not appropriate. Traditional distributed control planes are more resilient to controller-specific attacks.
Options B and D are mitigable: encryption is possible, and auth (e
• Lack of authentication mechanisms between switches and controllers (Incorrect):
This option is not appropriate. Traditional distributed control planes are more resilient to controller-specific attacks.
Options B and D are mitigable: encryption is possible, and auth (e




Page 4

Document information

Uploaded on
August 4, 2026
Number of pages
107
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