Skip to content

Quiz: Advanced Security Operations and Incident Response

Test your understanding of advanced security operations and incident response with these review questions.


1. What does encryption in transit protect against?

  1. Theft of data directly from a stolen disk or backup
  2. Interception of data actively moving across a network, such as a man-in-the-middle attack
  3. Unauthorized role assignment in an RBAC system
  4. A patient's failure to consent to data sharing
Show Answer

The correct answer is B. Encryption in transit protects data actively crossing a network, wrapping it in a cryptographic tunnel so an intercepted packet is unreadable ciphertext. Option A describes encryption at rest, a complementary but distinct technique. Option C describes an RBAC concern from Chapter 25. Option D describes a consent management concern, unrelated to network protection.

Concept Tested: Encryption In Transit


2. What is single sign-on (SSO)?

  1. A technique that replaces sensitive values with realistic-looking fake substitutes
  2. A formal process of identifying where an organization's safeguards might fail
  3. A hardened entry point through which every external application must pass to reach a database
  4. A capability that lets a user authenticate once with an IAM platform and be automatically trusted by every connected application for the remainder of the session
Show Answer

The correct answer is D. SSO lets a user authenticate once and move between connected applications without re-entering credentials, while each application still enforces its own authorization rules. Option A describes data masking. Option B describes a security risk assessment. Option C describes a secure API gateway.

Concept Tested: Single Sign-On


3. How does data masking differ from tokenization?

  1. Masking replaces sensitive values with realistic-looking fake substitutes and is typically irreversible, meant for non-production testing, while tokenization replaces a value with a placeholder token that can be reversed by an authorized system holding a separate mapping vault
  2. Masking and tokenization are two names for the exact same technique
  3. Tokenization is always irreversible, while masking is always reversible
  4. Masking can only be applied to encrypted data, while tokenization can only be applied to unencrypted data
Show Answer

The correct answer is A. Masking is typically irreversible and used for non-production testing, while tokenization is reversible by design for authorized systems that need to recover the original value later. Option B contradicts the chapter's explicit distinction between the two. Option C reverses which technique is reversible. Option D fabricates an unsupported encryption dependency for either technique.

Concept Tested: Tokenization


4. How does a security risk assessment differ from penetration testing?

  1. Both processes always produce identical reports, since they test the same thing
  2. Penetration testing identifies theoretical weaknesses, while a security risk assessment proves them empirically by attempting to exploit the system
  3. A security risk assessment identifies theoretical weaknesses by evaluating likelihood and impact, while penetration testing verifies them empirically by having security professionals actually attempt to exploit the system
  4. A security risk assessment can only be performed after a breach has already occurred
Show Answer

The correct answer is C. A security risk assessment estimates theoretical weaknesses through likelihood and impact analysis, while penetration testing empirically proves a vulnerability is real by actually exploiting it. Option A ignores the chapter's clear distinction between the two. Option B reverses which activity is theoretical versus empirical. Option D contradicts the chapter's description of risk assessments as regular, ongoing, and independent of any breach.

Concept Tested: Penetration Testing


5. A billing clerk verifying insurance eligibility is given access to only Maria Chen's policy number rather than her full clinical history, even though the clerk's role technically permits broader access. Which principle does this illustrate?

  1. Zero trust architecture
  2. The minimum necessary standard
  3. Tokenization
  4. Single sign-on
Show Answer

The correct answer is B. The minimum necessary standard limits disclosure to the smallest amount of PHI reasonably needed for the task, even when broader role-based access is technically available. Option A concerns verifying every request regardless of network origin, a different concept. Option C describes replacing values with placeholder tokens. Option D describes unified login across applications.

Concept Tested: Minimum Necessary Standard


6. Under a zero trust architecture, a clinical application runs on the hospital's own internal network. What must still happen before it can query the graph database?

  1. Nothing further, since internal network location alone grants automatic trust
  2. The application is exempted from IAM authentication because it never leaves the hospital's network
  3. Only encryption in transit is required, with no authentication or authorization check at all
  4. The application must present valid credentials and pass an authorization check for every query, exactly as it would from an external network, since no "trusted zone" grants a free pass
Show Answer

The correct answer is D. Zero trust requires every request to be authenticated and authorized on its own merits regardless of network origin, eliminating any automatically trusted zone. Option A and B directly contradict the "never trust, always verify" principle. Option C incorrectly claims encryption alone substitutes for authentication and authorization.

Concept Tested: Zero Trust Architecture


7. An organization suspends a compromised account's session tokens and IAM credentials immediately after insider threat detection flags anomalous cross-ward access. Which stage of the security incident response lifecycle does this action belong to?

  1. Contain
  2. Identify
  3. Recover
  4. Lessons Learned
Show Answer

The correct answer is A. Suspending session tokens and credentials to stop further access immediately is the Contain stage, which follows detection and precedes root-cause removal. Option B describes the earlier detection step that triggered this action, not the action itself. Option C describes restoring normal operations afterward. Option D describes the final review stage that occurs after the incident is resolved.

Concept Tested: Security Incident Response


8. Why does HIPAA's Security Rule expect both encryption in transit and encryption at rest, rather than just one of the two?

  1. Because encryption in transit and encryption at rest are legally interchangeable requirements
  2. Because encryption at rest alone fully protects data crossing a network
  3. Because encryption in transit alone leaves stored data exposed to a stolen disk, while encryption at rest alone leaves network traffic exposed to interception, so each closes a gap the other leaves open
  4. Because only one of the two techniques is compatible with graph databases
Show Answer

The correct answer is C. Each encryption type protects a different exposure point, network interception versus disk theft, so a system with only one of the two has a real, exploitable gap. Option A contradicts the chapter's treatment of them as distinct, complementary requirements. Option B ignores that encryption at rest does nothing for data actively moving across a network. Option D fabricates a compatibility restriction that does not exist.

Concept Tested: Encryption In Transit


9. Why does the chapter argue that zero trust architecture matters even for requests originating inside a hospital's own network perimeter?

  1. Because insider threats and compromised internal accounts, like the Chapter 25 ward-snooping example, make "inside the network" a meaningless safety signal on its own
  2. Because internal network traffic is always slower than external traffic and therefore needs stricter rules
  3. Because zero trust architecture only applies to traffic that has already passed through a secure API gateway
  4. Because perimeter security has been legally banned under HIPAA's Security Rule
Show Answer

The correct answer is A. The ward-snooping example showed a threat already inside the perimeter, which is exactly why zero trust rejects treating internal network location as a meaningful safety signal. Option B fabricates an unrelated performance justification. Option C incorrectly limits zero trust's scope to only gateway-routed traffic. Option D fabricates a legal prohibition that does not exist.

Concept Tested: Zero Trust Architecture


10. Why is centralizing authentication, MFA, RBAC, and ABAC enforcement into one IAM platform generally a better design choice than having each clinical application implement its own login and permission logic separately?

  1. Because IAM platforms eliminate the need for any audit logging
  2. Because separate per-application logic is always faster to develop than a centralized platform
  3. Because HIPAA requires every application to maintain its own independent identity system
  4. Because a single, centrally managed platform becomes the consistent source of truth for identity and permissions, avoiding the risk that some applications implement security incorrectly or inconsistently on their own
Show Answer

The correct answer is D. Centralizing identity and permission logic into one IAM platform avoids the inconsistency and risk of every application independently implementing its own, potentially flawed, security logic. Option A contradicts the chapter's inclusion of audit logging within the same enforcement workflow. Option B makes an unsupported development-speed claim. Option C directly contradicts the centralization principle the chapter describes.

Concept Tested: Identity And Access Management