Escrito por estudiantes que aprobaron Inmediatamente disponible después del pago Leer en línea o como PDF ¿Documento equivocado? Cámbialo gratis 4,6 TrustPilot
logo-home
Document preview thumbnail
Vista previa 4 fuera de 107 páginas
Examen

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

Document preview thumbnail
Vista previa 4 fuera de 107 páginas

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.

Vista previa del contenido

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

Información del documento

Subido en
4 de agosto de 2026
Número de páginas
107
Escrito en
2026/2027
Tipo
Examen
Contiene
Preguntas y respuestas
$13.49

¿Documento equivocado? Cámbialo gratis Dentro de los 14 días posteriores a la compra y antes de descargarlo, puedes elegir otro documento. Puedes gastar el importe de nuevo.
Escrito por estudiantes que aprobaron
Inmediatamente disponible después del pago
Leer en línea o como PDF

Seller avatar
Los indicadores de reputación están sujetos a la cantidad de artículos vendidos por una tarifa y las reseñas que ha recibido por esos documentos. Hay tres niveles: Bronce, Plata y Oro. Cuanto mayor reputación, más podrás confiar en la calidad del trabajo del vendedor.
GlobalExamBank
4.7
(3)
Vendido
13
Seguidores
1
Artículos
514
Última venta
1 mes hace




Por qué los estudiantes eligen Stuvia

Creado por compañeros estudiantes, verificado por reseñas

Calidad en la que puedes confiar: escrito por estudiantes que aprobaron y evaluado por otros que han usado estos resúmenes.

¿No estás satisfecho? Elige otro documento

¡No te preocupes! Puedes elegir directamente otro documento que se ajuste mejor a lo que buscas.

Paga como quieras, empieza a estudiar al instante

Sin suscripción, sin compromisos. Paga como estés acostumbrado con tarjeta de crédito y descarga tu documento PDF inmediatamente.

Student with book image

“Comprado, descargado y aprobado. Así de fácil puede ser.”

Alisha Student

Preguntas frecuentes