3.0 Security Architecture SY0-701 Practice Quiz

199 exam-style questions covering 18% of the SY0-701 exam. Instant feedback on every answer, progress tracking, no signup required.

This domain is part of the CompTIA Security+ practice test. Each question is tagged by exam objective and difficulty so you can drill exactly the areas you need.

Sample Questions

What is the shared responsibility model in cloud computing and why is it a critical security concept?
  • A. The shared responsibility model means the cloud provider is responsible for all security, customers have no security obligations
  • B. The shared responsibility model divides security responsibilities between the cloud provider and the customer: the provider is always responsible for the physical infrastructure, hypervisor, and core cloud services; the customer is always responsible for their data, access management, and application security. The exact division of middle-layer responsibilities (OS patching, network configuration, encryption) varies by service model (IaaS, PaaS, SaaS), misunderstanding this division creates security gaps
  • C. The shared responsibility model only applies to public cloud, private cloud has no shared responsibilities
  • D. The shared responsibility model is a legal concept only, it has no operational security implications

The shared responsibility model defines exactly who secures what, customer and provider responsibilities are clearly delineated and vary by service model. This is the correct answer.

What is a hybrid cloud architecture and what unique security challenges does it introduce?
  • A. A hybrid cloud combines public and private networks in an office building, it has no special security implications
  • B. A hybrid cloud combines on-premises infrastructure with public cloud services, connected through VPN or private network links. Unique security challenges: maintaining consistent security policies across two environments with different control planes; identity federation across on-premises Active Directory and cloud IAM; data classification governance determining what data can reside in each environment; network security at the hybrid connection boundary; and visibility, security monitoring must span both environments with unified threat detection
  • C. Hybrid cloud eliminates security concerns by combining the strengths of both environments
  • D. Hybrid cloud is identical to multi-cloud, both terms describe the same architecture

Hybrid environments require managing security across two different control planes, identity systems, and monitoring frameworks, creating unique complexity. This is the correct answer.

A company migrates from an on-premises application to SaaS. In the on-premises model, the security team managed OS patching, database encryption, network controls, and application access. Which of these responsibilities shift to the SaaS provider and which remain with the customer?
  • A. All four responsibilities transfer entirely to the SaaS provider, customers have no security obligations in SaaS
  • B. Responsibility shift in SaaS migration: Provider assumes: OS patching (entirely, customers have no OS access in SaaS); database encryption (provider manages the database infrastructure); network controls protecting the SaaS infrastructure (firewalls, DDoS protection). Customer retains: application access management (who can access the SaaS application, what roles they have, MFA enforcement, this always remains customer responsibility regardless of cloud model); data governance (what data is stored in the SaaS, data classification, retention); configuration of the SaaS application's security settings; and user identity integration. The critical customer responsibility in SaaS is access management and data governance, providers never manage who accesses the customer's data
  • C. Only OS patching transfers, all other responsibilities remain with the customer in SaaS
  • D. The responsibility division is negotiated per contract, there is no standard SaaS responsibility model

SaaS shifts infrastructure responsibilities to the provider while keeping access management and data governance with the customer, understanding this division is critical. This is the correct answer.

An organization's hybrid architecture connects their on-premises data center to AWS via AWS Direct Connect. Sensitive financial data processes on-premises; non-sensitive web applications run in AWS. A security architect must secure the hybrid connection. What security controls are critical at this boundary?
  • A. Direct Connect is inherently secure, no additional security controls are needed for the hybrid connection
  • B. Critical security controls at the hybrid cloud boundary: (1) Strict network segmentation, the Direct Connect connection should terminate in a dedicated transit VPC/VLAN, not directly into production networks; traffic must traverse security controls before reaching either environment; (2) Micro-segmentation rules, explicit allow rules for specific required traffic flows; block all other traffic between environments; (3) Traffic inspection, IDS/IPS or next-generation firewall inspecting cross-environment traffic; (4) Encryption, even though Direct Connect is a private connection, encrypt traffic at the application layer (TLS) for defense-in-depth; (5) Identity and access governance, service accounts used across the boundary should have minimum required permissions; (6) Data classification enforcement, controls preventing sensitive financial data from being accidentally transmitted to the AWS environment; (7) Monitoring, unified logging of all cross-boundary traffic for anomaly detection and incident response
  • C. Only encrypt traffic crossing the boundary, no other controls are needed for private connections
  • D. Allow all traffic between environments, segmentation only applies to internet-facing connections

Hybrid boundaries require layered security controls, segmentation, inspection, encryption, identity governance, and monitoring together secure the critical connection point. This is the correct answer.

A security team scans a Terraform repository and discovers: database passwords hardcoded in variables, S3 buckets configured as public, and security groups allowing 0.0.0.0/0 on port 22. These configurations have been deploying to production for 6 months. What security failures does this represent?
  • A. IaC repositories are development artifacts, production security is unaffected by repository configurations
  • B. Multiple security failures: (1) Secrets in IaC, database passwords hardcoded in Terraform variables are exposed to anyone with repository access; stored in version control history even after removal; this is a critical credential exposure; (2) Public S3 buckets, misconfigured as public exposes data to the internet; deployed at scale by IaC, this affects all environments where the template was applied; (3) SSH open to 0.0.0.0/0, security groups allowing global SSH access expose all EC2 instances to internet-based brute force and exploitation. The 6-month deployment window means: all these misconfigurations are in every environment deployed from this template; credentials have been exposed; data may have been accessed; and internet-accessible SSH may have been exploited. Root cause: absence of IaC security scanning (tfsec, Checkov) in the CI/CD pipeline and no code review enforcing security standards
  • C. These are minor configuration issues, no remediation is needed
  • D. IaC security scanning is unnecessary, manual code review catches all configuration issues

All three findings are critical security misconfigurations that have been actively deployed to production, each requires immediate remediation and a retrospective review. This is the correct answer.

A healthcare organization classifies data into four tiers. Protected Health Information (PHI) is Restricted; employee HR records are Confidential; internal policies are Internal; and the organization's public website content is Public. A security team discovers an employee downloaded a file containing a mix of PHI and public policy text into a single document. How should this compound document be classified and why?
  • A. The document should be classified based on an average of its content classifications, mixed documents receive an intermediate classification
  • B. The document should retain the Public classification for its public portions only, the PHI content can be reclassified separately after redaction
  • C. The compound document must be classified at the highest classification level of any of its components. Restricted, because the entire document must be handled according to the most sensitive data it contains. Mixing PHI with lower-classification content does not reduce the PHI's sensitivity; the whole document now carries PHI exposure risk and must be treated as Restricted. Best practice is to prevent mixing of classification tiers in a single document and to separate PHI into properly controlled repositories rather than combining it with lower-classification content
  • D. The document should be classified as Confidential because it contains both PHI and policy content and the average of Restricted and Internal equals Confidential

Documents containing mixed classification levels must be classified at the highest level present, because any exposure of the document exposes all of its content including the most sensitive. This is the correct answer.

An organization is choosing between three data-at-rest encryption approaches for a sensitive database: (1) full-disk encryption on the host server, (2) database transparent data encryption (TDE), and (3) application-layer column-level encryption. Which approach provides the strongest protection against a privileged database administrator who has full DBA credentials?
  • A. Full-disk encryption provides the strongest protection because it encrypts all data on the server including database files
  • B. Database TDE provides the strongest protection because it encrypts the database at the engine level, preventing OS-level access
  • C. All three approaches provide equivalent protection against a privileged DBA because DBA credentials grant access to all data in all encryption models
  • D. Application-layer column-level encryption provides the strongest protection against a privileged DBA because encryption and decryption occur in the application layer before data reaches the database engine. A DBA querying the database sees only ciphertext in the encrypted columns, the decryption keys are held by the application, not the database. Full-disk encryption and TDE both decrypt data transparently for any process or user with OS or database credentials, a DBA with full credentials bypasses both. Column-level application encryption separates the key management authority from the database administration role, providing true defense against insider threat from DBAs

Application-layer column encryption is the only approach where a privileged DBA with full database credentials still sees only ciphertext for encrypted columns, because key authority is separated from database administration. This is the correct answer.

An organization uses AWS EC2 (IaaS). A security breach occurs, an attacker exploited an unpatched OS vulnerability on the EC2 instance and accessed customer data stored in an unencrypted EBS volume. Which party failed in their shared responsibility and what specifically was each party's obligation?
  • A. AWS is responsible for all EC2 security, the breach is AWS's liability
  • B. Responsibility analysis: AWS fulfilled its obligations, the EC2 hypervisor, physical infrastructure, and underlying hardware were secure; AWS provided the patched OS images and encryption capabilities. Customer failed in two areas: (1) OS patching, in IaaS (EC2), the customer is responsible for patching the guest OS; AWS provides the virtualization layer but the customer manages what runs inside the VM, including OS updates; (2) Data encryption, the customer chose unencrypted EBS storage; AWS provides encryption capabilities (EBS encryption at rest) but enabling encryption is a customer configuration responsibility. The breach is the customer's security failure, they did not patch their OS and did not enable available encryption features. AWS is not liable for customer configuration failures within the customer's shared responsibility domain
  • C. Both parties share equal blame, the responsibility matrix means 50/50 liability
  • D. AWS is responsible for OS patching in EC2, customers only manage applications in IaaS

IaaS customers own the OS and everything above, patching and encryption configuration are definitively customer responsibilities in EC2. This is the correct answer.

Link to this quiz

Studying with a group or teaching a class? Send this address or paste the link into your notes, wiki, or course page:

https://quizbuffet.com/comptia-security-plus/security-architecture/

<a href="https://quizbuffet.com/comptia-security-plus/security-architecture/">CompTIA Security+ Security Architecture practice quiz on QuizBuffet</a>

Other SY0-701 Domains

← Back to SY0-701 practice test overview

Questions are written against the published SY0-701 objectives and checked for accuracy and balance before they go live. How QuizBuffet writes and reviews its questions.