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 116 páginas
Examen

ICT 394 QUIZ SESSION 02 – QUESTIONS AND CORRECT ANSWERS – ICT 394 COMPLETE CHAPTERS / CONTENT

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

115 ICT security questions with verified answers – all rationales included! This is a complete exam bank covering advanced ICT security concepts for ICT 394. Every question comes with the correct answer PLUS detailed explanations so you actually understand the material – not just memorize. What's Inside: - All 115 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: - RSA Encryption and Public Key Cryptography - WEP, WPA2, and WPA3 Security Protocols - PKI, Certificate Revocation Lists, and OCSP - Defense-in-Depth Security Strategies - Quantitative Risk Assessment and ALE Calculations - Stateful Firewalls and Deep Packet Inspection - Zero Trust Network Architecture - DNSSEC and DNS Security - IPsec VPNs (Transport vs Tunnel Mode) - BGP Routing and Path Selection - Cloud Service Models (IaaS, PaaS, SaaS) - Database Normalization (1NF, 2NF, 3NF, BCNF) - IoT Protocols and Security (LoRaWAN, BLE) - Incident Response and Forensic Acquisition Real Questions You'll See: Question: In the context of RSA encryption, given two distinct primes p=17 and q=23, an encryption exponent e=7, and a plaintext m=5, what is the corresponding ciphertext? ️ Answer: 295 Question: Which of the following best describes the primary security weakness of WEP that made it deprecated? ️ Answer: Reuse of initialization vectors leading to key recovery attacks Question: In a public key infrastructure (PKI), what is the primary purpose of a Certificate Revocation List (CRL) compared to Online Certificate Status Protocol (OCSP)? ️ Answer: CRLs are signed lists of revoked certificates distributed periodically, whereas OCSP provides real-time query responses Who This Is For: - You, if you're taking ICT 394 or similar advanced ICT security 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 02 | Questions and Correct Answers | 2026
Update | myMurdoch Learning | 100% Score - 115 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 security, including cryptography,
network defense, risk assessment, and secure systems design. Designed to test
deep conceptual understanding and application to complex scenarios.

Expected Grade A+

Total Questions 115

Duration 3 hours

Learning Outcomes 1. Analyze and mitigate complex cybersecurity threats
2. Design secure network architectures
3. Evaluate cryptographic protocols for real-world systems
4. Apply risk management frameworks to enterprise ICT environments

Accreditation Conforms to ABET and NSA/DHS Centers of Academic Excellence in Cyber
Defense (CAE-CD) standards




Page 1

,Question 1 of 115
In the context of RSA encryption, given two distinct primes p=17 and q=23, an encryption exponent
e=7, and a plaintext m=5 (co-prime to n), what is the corresponding ciphertext?
A. 391
B. 295
C. 112
D. 213


The correct answer is:
Correct Action: 295

Rationales
• 295 (Correct):
This is the correct action. n = p*q = 391. (n) = (p-1)*(q-1) = 16*22 = 352. Ciphertext c = m^e mod n = 5^7 mod 391.
5^2=25, 5^4=625 mod 391 = 234, 5^7 = 5^4 * 5^2 * 5 = 234*25*5 = 29250 mod 391 = 295. Option B is correct. Other
options are incorrect modulo calculations.
• 391 (Incorrect):
This option is not appropriate. (n) = (p-1)*(q-1) = 16*22 = 352. Ciphertext c = m^e mod n = 5^7 mod 391
• 112 (Incorrect):
This option is not appropriate. (n) = (p-1)*(q-1) = 16*22 = 352. Ciphertext c = m^e mod n = 5^7 mod 391
• 213 (Incorrect):
This option is not appropriate. (n) = (p-1)*(q-1) = 16*22 = 352. Ciphertext c = m^e mod n = 5^7 mod 391




Page 2

,Question 2 of 115
Which of the following best describes the primary security weakness of the Wired Equivalent
Privacy (WEP) protocol that made it deprecated?
A. Reuse of initialization vectors leading to key recovery attacks
B. Absence of integrity checks allowing frame injection
C. Use of a static pre-shared key without rotation
D. Vulnerability to brute-force attacks due to short key length


The correct answer is:
Correct Action: Reuse of initialization vectors leading to key recovery attacks

Rationales
• Reuse of initialization vectors leading to key recovery attacks (Correct):
This is the correct action. WEP's main flaw is the reuse of 24-bit IVs, which leads to keystream reuse and allows an
attacker to recover the RC4 key using statistical attacks (e.g., FMS attack). While B, C, and D are also weaknesses, the IV
reuse is the most fundamental and exploited vulnerability. Integrity checks are present but weak (CRC-32), and key length
• Absence of integrity checks allowing frame injection (Incorrect):
This option is not appropriate. g., FMS attack)
• Use of a static pre-shared key without rotation (Incorrect):
This option is not appropriate. g., FMS attack)
• Vulnerability to brute-force attacks due to short key length (Incorrect):
This option is not appropriate. g., FMS attack)




Page 3

, Question 3 of 115
In a public key infrastructure (PKI), what is the primary purpose of a Certificate Revocation List
(CRL) compared to Online Certificate Status Protocol (OCSP)?
A. CRLs provide real-time revocation status, while OCSP relies on periodic updates
B. CRLs are used only for intermediate CAs, while OCSP is for end-entity certificates
C. CRLs are signed lists of revoked certificates distributed periodically, whereas OCSP provides real-time query
responses
D. CRLs are less secure because they are not signed by the CA


The correct answer is:
Correct Action: CRLs are signed lists of revoked certificates distributed periodically, whereas OCSP
provides real-time query responses

Rationales
• CRLs are signed lists of revoked certificates distributed periodically, whereas OCSP provides real-time query
responses (Correct):
This is the correct action. A CRL is a signed, timestamped list of revoked certificates issued by a CA, distributed
periodically. OCSP allows a client to query the CA's server in real-time to check a certificate's status. The key difference is
the distribution model: CRL is batch/pull, OCSP is per-query. Others are incorrect; both services use CA signatures.
• CRLs provide real-time revocation status, while OCSP relies on periodic updates (Incorrect):
This option is not appropriate. OCSP allows a client to query the CA's server in real-time to check a certificate's status. The
key difference is the distribution model: CRL is batch/pull, OCSP is per-query
• CRLs are used only for intermediate CAs, while OCSP is for end-entity certificates (Incorrect):
This option is not appropriate. OCSP allows a client to query the CA's server in real-time to check a certificate's status. The
key difference is the distribution model: CRL is batch/pull, OCSP is per-query
• CRLs are less secure because they are not signed by the CA (Incorrect):
This option is not appropriate. OCSP allows a client to query the CA's server in real-time to check a certificate's status. The
key difference is the distribution model: CRL is batch/pull, OCSP is per-query




Page 4

Información del documento

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

¿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