An administrator migrates a legacy banking application from a private cloud to a public cloud. Then, the administrator discovers the application's hardware on the private cloud is no longer compatible for reuse. Which of the following should the administrator do next?
-
A
Perform a full system backup
-
B
-
C
-
D
Decommission the infrastructure
Reveal answer details
Close answer details
Correct answerD
ExplanationWhen the legacy hardware can no longer be reused after migrating the application to the public cloud, the appropriate next step is to decommission the unused infrastructure to eliminate unnecessary cost, maintenance, and risk.
Which of the following types of storage provides the greatest performance advantage for a traditional relational database?
-
A
-
B
-
C
-
D
Reveal answer details
Close answer details
Correct answerC
ExplanationBlock storage provides the greatest performance advantage for traditional relational databases due to its high performance and low-latency characteristics. Block storage allows databases to rapidly manage data in fixed-sized blocks, which is ideal for databases that require frequent read/write operations. References: Understanding different storage types and their use cases, including block storage for databases, is part of the cloud computing knowledge base covered in CompTIA Cloud+.
Which of the following is the best type of database for storing different types of unstructured data that may change frequently?
-
A
-
B
-
C
-
D
Reveal answer details
Close answer details
Correct answerC
ExplanationNon-relational (NoSQL) databases are best for storing different types of unstructured data that may change frequently. They are designed to handle a wide variety of data types and are not constrained by the fixed schema of relational databases, making them more flexible and scalable for unstructured data. References: The distinction between relational and non-relational databases and their use cases is part of the foundational knowledge for cloud databases discussed in the CompTIA Cloud+ certification.
Which of the following industry standards mentions that credit card data must not be exchanged or stored in cleartext?
-
A
-
B
-
C
-
D
Reveal answer details
Close answer details
Correct answerD
ExplanationThe Payment Card Industry Data Security Standard (PCI-DSS) is the industry standard that mandates that credit card data must not be stored or transmitted in cleartext. It includes requirements for encryption, access control, and other security measures to protect cardholder data. References: Official PCI Security Standards Council Site.
Which of the following interfaces is most commonly used for SSDs but not for HDDs?
-
A
-
B
-
C
-
D
Reveal answer details
Close answer details
Correct answerA
ExplanationNVMe (Non-Volatile Memory Express) is a high-speed storage interface designed specifically for SSDs. It utilizes the PCIe (Peripheral Component Interconnect Express) bus, providing significantly faster data transfer speeds and lower latency compared to traditional interfaces like SATA and SAS, which were originally designed for HDDs. Unlike HDDs, NVMe takes advantage of parallel processing capabilities, making it the preferred choice for modern SSDs.
A company has ten cloud engineers working on different manual cloud deployments. In the past, engineers have had difficulty keeping deployments consistent. Which of the following is the best method to address this issue?
-
A
-
B
-
C
-
D
Reveal answer details
Close answer details
Correct answerC
ExplanationConfiguration as Code (CaC) ensures that all cloud deployments are consistent, repeatable, and automated by defining infrastructure configurations in code (e.g., Terraform, AWS CloudFormation, Ansible). This eliminates inconsistencies caused by manual deployments, reduces human errors, and enables version control, making it easier to track changes and collaborate effectively among multiple engineers.
Which of the following services is most appropriate for routing requests in front of a replica set of virtual machines that host multiple websites?
-
A
-
B
-
C
-
D
Reveal answer details
Close answer details
Correct answerC
ExplanationA Layer 7 load balancer can inspect HTTP/HTTPS traffic and route requests based on application-level data, such as host headers or URLs, making it ideal for distributing traffic across multiple websites hosted on a replica set of VMs.
A newly configured VM fails to run application updates despite having internet access. The updates download automatically from a third-party network. Given the following output:  Which of the following troubleshooting steps would be best to take?
-
A
Checking DNS configurations
-
B
Reconfiguring routing protocols
-
C
Testing the IP address configuration
-
D
Running a trace to the router
Reveal answer details
Close answer details
Correct answerA
ExplanationThe best troubleshooting step to take given the output is to check DNS configurations. The failure to resolve the "na.updateserver.net" domain suggests a DNS resolution issue, which could be due to incorrect DNS settings, a failure in the DNS service, or an issue with the DNS server itself. References: Troubleshooting DNS issues is a crucial skill in cloud management, as DNS plays a fundamental role in network connectivity and access to resources. It is covered under Cloud Concepts in the CompTIA Cloud+ curriculum.
Which of the following storage resources provides higher availability and speed for currently used files?
-
A
-
B
-
C
-
D
Reveal answer details
Close answer details
Correct answerC
ExplanationHot storage using Solid State Drives (SSD) is designed for data that needs to be accessed frequently and quickly. SSDs provide faster access times compared to HDDs, making them suitable for high-availability and speed-critical files, such as those currently in use or requiring rapid access. References: CompTIA Cloud+ resources and storage tiering concepts
Question 10
Single choice
A cloud engineer wants containers to run the latest version of a container base image to reduce the number of vulnerabilities. The applications in use requite Python 3.10 and ate not compatible with any other version. The containers' images are created every time a new version is released from the source image. Given the container Dockerfile below:  Which of the following actions will achieve the objectives with the least effort?
-
A
Perform docker pull before executing docker run.
-
B
Execute docker update using a local cron to get the latest container version.
-
C
Change the image to use python:latest on the image build process.
-
D
Update the Dockerfile to pin the source image version.
Reveal answer details
Close answer details
Correct answerA
ExplanationPerforming a "docker pull" before executing "docker run" ensures that the latest version of the container base image is used, aligning with the objective of reducing vulnerabilities. This command fetches the latest image version from the repository, ensuring that the container runs the most up-to-date and secure version of the base image. This approach is efficient and requires minimal effort, as it automates the process of maintaining the latest image versions for container deployments. References: Within the CompTIA Cloud+ examination scope, understanding management and technical operations in cloud environments, including container management and security, is critical. This includes best practices for maintaining up-to-date container images to minimize vulnerabilities.
Question 11
Single choice
A developer is building a new application version using a CI/CD pipeline. The developer receives the following error message log when the build fails:  Which of the following is the most likely cause of this failure?
-
A
-
B
-
C
-
D
Reveal answer details
Close answer details
Correct answerD
ExplanationThe error message indicates that the 'requests' module, which is a dependency, is not found. The failure is most likely due to the 'requests' library not being installed or not included in the environment where the application is running. References: Dependency management is a crucial part of maintaining a CI/CD pipeline, a topic included in the CompTIA Cloud+ examination objectives.
Question 12
Single choice
A cloud engineer needs to upgrade the pip python module by running the following command: python.exe -m pip install -upgrade pip. However, after the command is entered, the engineer receives the following error message: WARNINg: Retrying (Retry(TOTAL=4 connect=None, read=None, redirect=None, status=None) after connection broken by 'SSLError(SSLCertVerificationError(1, [SSL: /packages/07/51/abasciekdkgiyiykrieeeotlriturjaab/pip-27.4.3.py3-none-any.whl. Given this scenario, which of the following is more than likely the cause of the issue?
-
A
Syntax error with the command entered
-
B
Python version incompatibility
-
C
Broken TLS communication with no internet access
-
D
Certificate for package repository is not trusted
Reveal answer details
Close answer details
Correct answerD
ExplanationThe error message specifically indicates SSLCertVerificationError, which occurs when Python cannot validate the SSL/TLS certificate presented by the package repository. This typically happens when the repository's certificate is untrusted, missing from the local trust store, or intercepted by a proxy using an untrusted certificate. The error shows that connectivity exists because the package URL is being reached, but certificate validation is failing.
Question 13
Single choice
A cloud administrator is working on the deployment of an e-commerce website. The administrator evaluates the scaling methods to be implemented when seasonal or flash sales are launched. Which of the following scaling approaches should the administrator use to best manage this scenario?
-
A
-
B
-
C
-
D
Reveal answer details
Close answer details
Question 14
Single choice
Which of the following can connect multiple VPCs and an on-premises network?
-
A
-
B
-
C
-
D
Reveal answer details
Close answer details
Correct answerD
ExplanationA transit gateway is designed to act as a central hub that connects multiple VPCs and on-premises networks together. It simplifies routing and scales much better than managing many individual point-to-point connections.
Question 15
Single choice
A cloud security analyst is concerned about security vulnerabilities in publicly available container images. Which of the following is the most appropriate action for the analyst to recommend?
-
A
Using CIS-hardened images
-
B
-
C
Using digitally signed images
-
D
Using images that have an application firewall
Reveal answer details
Close answer details
Question 16
Single choice
A cross-site request forgery vulnerability exploited a web application that was hosted in a public laaS network. A security engineer determined that deploying a WAF in blocking mode at a CDN would prevent the application from being exploited again. However, a week after implementing the WAF, the application was exploited again. Which of the following should the security engineer do to make the WAF control effective?
-
A
Configure the DDoS protection on the CDN.
-
B
Install endpoint protection software on the VMs
-
C
Add an ACL to the VM subnet.
-
D
Deploy an IDS on the laaS network.
Reveal answer details
Close answer details
Correct answerC
ExplanationAfter a WAF deployment fails to prevent an exploit, adding an Access Control List (ACL) to the Virtual Machine (VM) subnet can be an effective control. ACLs provide an additional layer of security by explicitly defining which traffic can or cannot enter a network segment. By setting granular rules based on IP addresses, protocols, and ports, ACLs help to restrict access to resources, thereby mitigating potential exploits and enhancing the security of the IaaS network. References: CompTIA Cloud+ materials cover governance, risk, compliance, and security for the cloud, including the implementation of network security controls like ACLs, to protect cloud environments from unauthorized access and potential security threats.
Question 17
Single choice
A cloud engineer needs to migrate an application from on premises to a public cloud. Due to timing constraints, the application cannot be changed prior to migration. Which of the following migration strategies is best approach for this use case?
-
A
-
B
-
C
-
D
Reveal answer details
Close answer details
Correct answerD
ExplanationRehosting, often referred to as "lift-and-shift," is the process of migrating an application or workload to the cloud without modifying it. This approach is suitable when there are timing constraints that prevent making changes to the application prior to migration. Rehosting can be the quickest migration strategy since it involves moving the existing applications to the cloud with minimal changes. References: CompTIA Cloud+ resources and cloud migration strategies
Question 18
Single choice
A cloud engineer is troubleshooting a connectivity issue. The application server with IP 192.168.1.10 in one subnet is not connecting to the MySQL database server with IP 192.168.2 20 in a different subnet. The cloud engineer reviews the following information: Application Server Stateful Firewall   Which of the following should the cloud engineer address lo fix the communication issue?
-
A
The Application Server Stateful Firewall
-
B
The Application Server Subnet Routing Table
-
C
The MySQL Server Stateful Firewall
-
D
The MySQL Server Subnet Routing Table
Reveal answer details
Close answer details
Correct answerC
ExplanationThe connectivity issue between the application server and the MySQL database server in different subnets is likely due to the MySQL Server Stateful Firewall's inbound rules. The application server has an IP of 192.168.1.10, but the MySQL server's inbound rules only permit IP 192.168.1.10/32 on port 3306. This rule allows only a single IP address (192.168.1.10) to communicate on port 3306, which is typical for MySQL. However, if the application server's IP is not 192.168.1.10 or the application is trying to communicate on a different port, it would be blocked. To fix the communication issue, the cloud engineer should address the inbound rules on the MySQL Server Stateful Firewall to ensure that the application server's IP address and therequired port are allowed. References: Based on the information provided in the question and general networking principles.
Question 19
Multiple choice
A cloud engineer was deploying the company's payment processing application, but it failed with the following error log: ERFOR:root: Transaction failed http 429 response, please try again Which of the following are the most likely causes for this error? (Select two).
-
A
-
B
-
C
-
D
-
E
-
F
Reveal answer details
Close answer details
Correct answersA, F
ExplanationThe error "http 429 response, please try again" typically indicates API throttling, where the number of requests exceeds the rate limit set by the API provider, and insufficient quota, where the allowed number of API calls within a given timeframe has been exceeded. References: API throttling and quota management are key concepts in the management of cloud resources, as highlighted in the CompTIA Cloud+ curriculum.
Question 20
Single choice
A software engineer at a cybersecurity company wants to access the cloud environment. Per company policy, the cloud environment should not be directly accessible via the internet. Which of the following options best describes how the software engineer can access the cloud resources?
-
A
-
B
-
C
-
D
Reveal answer details
Close answer details
Correct answerB
ExplanationA bastion host is the best option described for accessing cloud resources without direct internet access. It acts as a secure gateway to access internal networks from external sources and is often used in conjunction with other security measures such as SSH for secure connections. References: The use of bastion hosts as a secure access point to cloud resources is a security best practice covered in the CompTIA Cloud+ certification's domain on cloud security.
Question 21
Single choice
A company runs a discussion forum that caters to global users. The company's monitoring system reports that the home page suddenly is seeing elevated response times, even though internal monitoring has reported no issues or changes. Which of the following is the most likely cause of this issue?
-
A
-
B
-
C
-
D
Reveal answer details
Close answer details
Correct answerC
ExplanationElevated response times without reported issues or changes internally could indicate a Distributed Denial of Service (DDoS) attack, where multiple systems flood the bandwidth or resources of a targeted system, usually one or more web servers. References: CompTIA Security+ Guide to Network Security Fundamentals by Mark Ciampa.
Question 22
Single choice
A cloud engineer is troubleshooting an application that consumes multiple third-party REST APIs. The application is randomly experiencing high latency. Which of the following would best help determine the source of the latency?
-
A
Configuring centralized logging to analyze HTTP requests
-
B
Running a flow log on the network to analyze the packets
-
C
Configuring an API gateway to track all incoming requests
-
D
Enabling tracing to detect HTTP response times and codes
Reveal answer details
Close answer details
Correct answerD
ExplanationEnabling tracing in the application can help determine the source of high latency by providing detailed information on HTTP request and response times, as well as response codes. This can identify which API calls are experiencing delays and contribute to overall application latency, allowing for targeted troubleshooting and optimization.
Question 23
Single choice
Which of the following best explains RPO?
-
A
The time needed to recover from a disaster
-
B
The acceptable amount of data loss after a disaster
-
C
The estimated amount of data loss after a disaster
-
D
The time estimated between disasters
Reveal answer details
Close answer details
Correct answerB
ExplanationRecovery Point Objective (RPO) defines the maximum acceptable amount of data loss measured in time after a disruption or disaster. It determines how far back data can be recovered and helps organizations establish backup frequency requirements.
Question 24
Single choice
An engineer wants to scale several cloud workloads on demand. Which of the following approaches is the most suitable?
-
A
-
B
-
C
-
D
Reveal answer details
Close answer details
Correct answerA
ExplanationLoad scaling is the most suitable approach for scaling several cloud workloads on demand. It automatically adjusts the number of active servers in a cloud environment based on the current load or traffic, ensuring that resources are efficiently utilized to meet demand without manual intervention. This approach helps maintain optimal performance and availability, particularly during unexpected surges in workload or traffic. References: Understanding cloud management and technical operations, including scaling strategies, is crucial for optimizing resource utilization and performance in cloud environments, as outlined in the CompTIA Cloud+ objectives.
Question 25
Single choice
A DevOps engineer is initiating a build on a CI/CD pipeline by committing changes to a private repository. Which of the following is the purpose of the private repository?
-
A
-
B
-
C
To implement version control
-
D
To perform integration testing
Reveal answer details
Close answer details
Correct answerA
ExplanationA private repository restricts access to authorized users and protects source code from unauthorized viewing or modification. In a CI/CD workflow, its primary purpose is to secure valuable code assets while allowing approved developers to collaborate and manage changes.
Question 26
Single choice
Which of the following reduces the chance of introducing a misconfiguration into cloud deployment templates?
-
A
Performing a git fetch after every commit
-
B
Opening pull requests for changes
-
C
Using the web interface to update files
-
D
Committing updates to the main branch
Reveal answer details
Close answer details
Correct answerB
ExplanationPull requests (PRs) are a key part of code review processes in version control systems like Git. By requiring pull requests before merging changes into the main branch, teams can review, validate, and test changes before they go live. This helps catch misconfigurations early, ensuring that cloud deployment templates remain secure and function correctly. A peer review process via pull requests reduces errors and enforces best practices before updates are integrated.
Question 27
Single choice
A database administrator performs a full backup periodically and keeps several versions in a cloud instance with increasing storage costs. Which of the following should the administrator consider doing to manage backup retention?
-
A
Classify backup files based on the sensitivity of data.
-
B
Set up a time frame for the deletion of old backup files.
-
C
Identify the need for granular and/or bulk recovery.
-
D
Determine whether a differential backup will satisfy the operational needs.
Reveal answer details
Close answer details
Correct answerB
ExplanationTo effectively manage backup retention and control increasing storage costs, the administrator should establish a policy for deleting old backup files after a certain time period. This ensures that outdated backups that are no longer needed for recovery are removed, freeing up storage space and reducing costs.
Question 28
Single choice
Project team members submit timesheets through a system that also tracks incurred project costs. Which system supports this functionality?
-
A
-
B
-
C
-
D
Reveal answer details
Close answer details
Question 29
Single choice
Which of the following would allow a cloud engineer to flatten a deeply nested JSON log to improve readability for analysts?
-
A
-
B
-
C
-
D
Reveal answer details
Close answer details
Correct answerD
ExplanationLogstash can be used to flatten a deeply nested JSON log, which would improve readability for analysts. Logstash is a data processing pipeline that ingests data from various sources, transforms it, and then sends it to a "stash" like Elasticsearch. References: CompTIA Cloud+ Study Guide (Exam CV0-004) - Chapter on Cloud Data Management
Question 30
Single choice
Which of the following network protocols is generally used in a NAS environment?
-
A
-
B
-
C
-
D
Reveal answer details
Close answer details
Correct answerC
ExplanationThe network protocol generally used in a NAS (Network Attached Storage) environment is TCP/IP (Transmission Control Protocol/Internet Protocol). NAS devices are accessed over a network rather than being directly connected to the computer, and they utilize the TCP/IP protocol to enable this network communication. References: Understanding of networking protocols, including TCP/IP in the context of NAS environments, is part of the foundational networking knowledge for cloud services in CompTIA Cloud+.
Question 31
Single choice
A company uses two mobile applications. Application A is used in the United States market, and Application is used in the European Union market with GDPR restrictions. Both applications must comply with PCI standards. The company is consolidating both mobile applications into a single application and must standardize its database back-end system. Which of the following is the best option to provision the database for the consolidated mobile application?
-
A
Deploying one global database across multiple regions
-
B
Using two databases in the same region with different access controls
-
C
Implementing two databases in two different regions
-
D
Provisioning one database in one region with separate IAM permissions
Reveal answer details
Close answer details
Correct answerC
ExplanationThe consolidated application must comply with both PCI requirements and GDPR regulations. GDPR imposes restrictions on where EU personal data is stored and processed. Implementing two databases in different regions allows EU data to remain within an appropriate region while supporting the United States market separately. This approach helps meet data residency and regulatory requirements while maintaining compliance for both markets.
Question 32
Single choice
A cloud administrator has built a new private cloud environment and needs to monitor all computer, storage, and network components of the environment. Which of the following protocols would be MOST useful for this task?
-
A
-
B
-
C
-
D
Reveal answer details
Close answer details
Correct answerC
ExplanationSimple Network Management Protocol (SNMP) is a protocol that enables monitoring and managing network devices and components in an IP network. SNMP can help monitor all computer, storage, and network components of a private cloud environment, as it can collect and report information about their status, performance, configuration, and events. SNMP can also help troubleshoot and optimize the private cloud environment, as it can detect and alert any issues or anomalies related to the network devices and components. References: CompTIA Cloud+ Certification Exam Objectives, page 15, section 2.8
Question 33
Single choice
A cloud engineer must configure a backup at the end of the month. Given the following requirements: Minimal backup size Faster backup speed. Which of the following backup types best meets the requirements?
-
A
-
B
-
C
-
D
Reveal answer details
Close answer details
Correct answerD
ExplanationAn incremental backup stores only the data that has changed since the most recent backup. This results in the smallest backup size and the fastest backup operation because the least amount of data needs to be copied during each backup cycle.
Question 34
Single choice
An IT manager needs to deploy a cloud solution that meets the following requirements: 1. Users must use two authentication methods to access resources. 2. Each user must have 10GB of storage space by default. Which of the following combinations should the manager use to provision these requirements?
-
A
OAuth 2.0 and ephemeral storage
-
B
OIDC and persistent storage
-
C
-
D
Reveal answer details
Close answer details
Correct answerC
ExplanationThe combination that should be used to provision the requirements of two authentication methods and 10GB of storage space by default for each user is Multi-Factor Authentication (MFA) and storage quotas. MFA provides an additional layer of security beyond just a username and password, and storage quotas can be used to allocate a specific amount of storage space for each user. References: CompTIA Cloud+ Study Guide (Exam CV0-004) by Todd Montgomery and Stephen Olson
Question 35
Single choice
A cloud solution needs to be replaced without interruptions. The replacement process can be completed in phases, but the cost should be kept as low as possible. Which of the following is the best strategy to implement?
-
A
-
B
-
C
-
D
Reveal answer details
Close answer details
Correct answerB
ExplanationA rolling strategy is the best to implement when needing to replace a cloud solution without interruptions and keeping costs low. This approach updates or replaces parts of the system gradually with minimal downtime and allows for a phased implementation. References: CompTIA Cloud+ Study Guide (Exam CV0-004) - Chapter on Cloud Deployment and Provisioning
Question 36
Single choice
A cloud application fails to retrieve data from an API. A cloud engineer reviews the following log: [ERROR] HTTP 429 - Too many requests [INFO] API rate limit exceeded [WARNING] API throttled. Which of the following is the best resolution?
-
A
Upgrade the network bandwidth
-
B
Increase the database storage.
-
C
Implement exponential backoff.
-
D
Reveal answer details
Close answer details
Correct answerC
ExplanationExponential backoff is the correct response to rate limiting because it spaces out retry attempts after throttling occurs. This reduces repeated immediate requests, allows the service time to recover, and aligns the client behavior with API rate-limit handling best practices.
Question 37
Multiple choice
A government agency in the public sector is considering a migration from on premises to the cloud. Which of the following are the most important considerations for this cloud migration? (Select two).
-
A
-
B
-
C
-
D
-
E
-
F
Reveal answer details
Close answer details
Correct answersA, D
ExplanationFor a government agency considering cloud migration, compliance and regulatory considerations are of utmost importance. The agency must ensure that the migration aligns with legal requirements, industry standards, and government regulations specific to the public sector. References: Compliance and regulatory considerations are crucial factors in the cloud migration process for government entities, as emphasized in the CompTIA Cloud+ certification.
Question 38
Single choice
A project manager is reviewing quality planning techniques. Which of the following involves comparing the results of similar activities?
-
A
Performing a cost-benefit analysis
-
B
-
C
-
D
Reveal answer details
Close answer details
Correct answerC
ExplanationBenchmarking is a quality planning technique that compares results, processes, or best practices from similar activities or organizations. It is used to establish realistic performance standards and identify opportunities for improvement. Unlike cost-benefit analysis, which focuses on financial evaluation, benchmarking emphasizes performance comparison. References: CompTIA Project+ PK0-005 - Quality Planning Techniques CompTIA Cloud+ CV0-004 Operations and Support domain.
Question 39
Single choice
A DevOps engineer is performing maintenance on the mail servers for a company's web application. Part of this maintenance includes checking core operating system updates. The servers are currently running version 3.2 of the operating system. The engineer has two update options--one to version 4.1 and the other to version 3.7. Both versions are fully supported by the operating system manufacturer. Which of the following best describes the action the engineer should take?
-
A
Upgrade to 3.7 in the development environment.
-
B
Upgrade to 4.1 on one production server at a time.
-
C
Read the release notes on version 4.1.
-
D
Schedule a maintenance window and upgrade to 3.7 in the production environment.
Reveal answer details
Close answer details
Correct answerA
ExplanationBefore making any updates to the production environment, the best course of action is to perform the update in a development or testing environment. Upgrading to version 3.7, which is a minor update, is generally less risky and should be tested first to ensure compatibility and stability before considering the major update to version 4.1. References: The process of updating and maintaining servers, including the validation of updates in a non- production environment, is part of the technical operations management covered in CompTIA Cloud+.
Question 40
Single choice
A cloud administrator needs to reduce storage costs. Which of the following would best help the administrator reach that goal?
-
A
-
B
Implementing deduplication
-
C
-
D
Reveal answer details
Close answer details
Correct answerB
ExplanationDeduplication is a process by which redundant data is eliminated, thus reducing the size of the dataset. Deduplication with cloud storage reduces the storage requirements, along with the amount of data to be transferred over the network, resulting in faster and more efficient data protection operations 1. Deduplication can help to shrink the data footprint, lower the storage costs, and improve the performance of backup and recovery processes 2. Deduplication can be applied at different levels, such as file-level, block-level, or byte-level, depending on the granularity and efficiency of the technique 3. Deduplication can also be performed at different locations, such as source, target, or cloud, depending on the architecture and design of the storage system 3. By implementing deduplication, a cloud administrator can achieve significant data savings and optimize the cloud storage costs 4. References: Data deduplication techniques for efficient cloud storage management: a systematic review How Data Deduplication Reduces Cloud Data Costs How Data Deduplication Can Save Cloud Storage Costs? Data Deduplication Overview What is Data Deduplication and How Can it Help Reduce Cloud Costs?.
Question 41
Single choice
An organization's internal security team mandated that public cloud resources must be accessible only by a corporate VPN and not by direct public internet access. Which of the following would achieve this objective?
-
A
-
B
-
C
-
D
Reveal answer details
Close answer details
Correct answerC
ExplanationA Virtual Private Cloud (VPC) allows users to create a secluded section of the public cloud where resources can be launched in a defined virtual network. This enables an organization to have a section of the cloud that is secured and isolated from the public internet, thus, access to public cloud resources can be restricted to only a corporate VPN. References: CompTIA Cloud+ Study Guide (Exam CV0-004) - Chapter on Cloud Security
Question 42
Single choice
A cloud solutions architect wants to deploy a three-tier web application that requires the minimum amount of operational overhead. Which of the following is the best template given these requirements?
-
A
-
B
-
C
-
D
Reveal answer details
Close answer details
Correct answerB
ExplanationChosen template leverages serverless functions for the backend, managed relational databases with clustering, and object storage with static web content enabled. This setup minimizes operational overhead by avoiding direct management of virtual machines for application and database tiers, using serverless and managed services instead. It aligns best with the requirement for minimal operational overhead in deploying a three-tier web application.
Question 43
Single choice
A company is concerned it will run out of VLANs on its private cloud platform in the next couple months, and the product currently offered to customers requires the company to allocate three dedicated, segmented tiers. Which of the following can the company implement to continue adding new customers and to maintain the required level of isolation from other tenants?
-
A
-
B
-
C
-
D
Reveal answer details
Close answer details
Correct answerC
ExplanationOne possible solution for the company to continue adding new customers and to maintain the required level of isolation from other tenants is to implement VXLAN. VXLAN is a network virtualization technology that can extend VLAN by adding a 24-bit segment ID, which allows up to 16 million unique virtual segments. VXLAN can encapsulate layer 2 Ethernet frames within layer 3 IP packets, and tunnel them across the underlying network. VXLAN can provide logical isolation and security for different tenants, as well as scalability and flexibility for large cloud computing environments 1.
Question 44
Single choice
Which of the following Al/ML technologies consumes text input to discern tone?
-
A
-
B
-
C
-
D
Reveal answer details
Close answer details
Correct answerD
ExplanationSentiment analysis is an AI/ML technology that processes text to determine the tone. It helps in understanding the sentiments behind the words by analyzing the text input, which can be positive, negative, or neutral. References: CompTIA Cloud+ Study Guide (Exam CV0-004) - Chapter on Cloud Technologies and Applications
Question 45
Single choice
A software development team decides to use a code repository. Which of the following is the most likely reason for this decision?
-
A
-
B
-
C
-
D
Reveal answer details
Close answer details
Correct answerB
ExplanationA code repository is primarily used for version management, allowing developers to track, control, and manage changes to source code over time while enabling collaboration.
Question 46
Multiple choice
A project manager is assigned to a project that includes vendor contracts. Which of the following actions should the project manager perform most frequently? (Select two.)
-
A
-
B
-
C
Validate the status report
-
D
-
E
-
F
Baseline the project schedule
Reveal answer details
Close answer details
Question 47
Single choice
A user's assigned cloud credentials are locked, and the user is unable to access the project's application. The cloud administrator reviews the logs and notices several attempts to log in with the user's account were made to a different application after working hours. Which of the following is the best approach for the administrator to troubleshoot this issue?
-
A
Create new credentials for the user and restrict access to the authorized application.
-
B
Track the source of the log-in attempts and block the IP address of the source in the WAR
-
C
Reset the user's account and implement a stronger lock-out policy.
-
D
Install an IDS on the network to monitor suspicious activity
Reveal answer details
Close answer details
Correct answerB
ExplanationThe administrator should track the source of the log-in attempts and block the IP address in the Web Application Firewall (WAF). This will prevent further unauthorized attempts from that source. It is also advisable to reset the user's account credentials as a precautionary measure. References: Incident response and addressing unauthorized access attempts, including tracking and blocking IP addresses, are security measures addressed in the CompTIA Cloud+ material.
Question 48
Single choice
A company implements a web farm with 100 servers behind an application load balancer. During scaling events, new web servers that are placed in service have not loaded all their modules, which causes some requests to the web farm to fail. Which of the following should the cloud engineer implement to address the scaling issue?
-
A
-
B
-
C
-
D
Load balancer pass through
Reveal answer details
Close answer details
Correct answerA
ExplanationImplementing an instance warm-up period can address the issue of new web servers not having all modules loaded during scaling events. This warm-up period allows new instances to fully initialize and start serving traffic only when they are ready, preventing failed requests. References: Scaling strategies and their operational impact, including the concept of instance warm-up, are covered under cloud infrastructure management in the CompTIA Cloud+ curriculum.
Question 49
Single choice
A stakeholder requests project performance data. Which of the following should the project manager provide?
-
A
-
B
-
C
-
D
Reveal answer details
Close answer details
Question 50
Multiple choice
A cloud security engineer discovers that service account information has been committed to the company's code repository. Which of the following steps should the cloud security engineer take first? (Choose two.)
-
A
-
B
Enable multifactor authentication
-
C
Set up a virtual private network.
-
D
-
E
-
F
Reveal answer details
Close answer details
Correct answersD, F
ExplanationDisabling the account is an immediate containment action that prevents any further use of the exposed service account while the incident is being investigated. Rotating the credentials ensures that any secrets, keys, or tokens exposed in the repository become invalid and can no longer be used by unauthorized parties. This is a critical step after credential exposure.
Question 51
Single choice
Which of the following is an example of refactoring?
-
A
Creation of a container registry
-
B
Code changes to facilitate platform hosting
-
C
-
D
Document conversion to a secure file format
Reveal answer details
Close answer details
Correct answerB
ExplanationRefactoring involves modifying existing code to improve its efficiency, maintainability, or compatibility without changing its core functionality. Making code changes to facilitate platform hosting, such as adapting an application for cloud-native deployment, containerization, or microservices, is a key example of refactoring.
Question 52
Single choice
An update is being deployed to a web application, and a systems administrator notices the cloud SQL database has stopped running. The VM is responding to pings, and there were not any configuration changes scheduled for the VM. Which of the following should the administrator check NEXT?
-
A
-
B
-
C
-
D
vGPU performance on the VM
Reveal answer details
Close answer details
Correct answerA
ExplanationChecking the logs on the VM is the next step that the administrator should take if the cloud SQL database has stopped running after an update deployment. Logs are records of events and activities that occur on a system or application. Logs can provide useful information for troubleshooting and identifying the root cause of an issue. The administrator should look for any errors, warnings, or messages that indicate what happened to the SQL database service and why it stopped running.
Question 53
Single choice
A developer at a small startup company deployed some code for a new feature to its public repository. A few days later, a data breach occurred. A security team investigated the incident and found that the database was hacked. Which of the following is the most likely cause of this breach?
-
A
-
B
-
C
Compromised deployment agent
-
D
Reveal answer details
Close answer details
Correct answerB
ExplanationHard-coded credentials within code, especially when deployed in a public repository, are a common security vulnerability. If credentials such as passwords or API keys are embedded in the code, anyone with access to the repository can potentially use them to gain unauthorized access to databases or other sensitive resources. This is a likely cause of the data breach in the scenario described. References: CompTIA Security+ Guide to Network Security Fundamentals by Mark Ciampa.
Question 54
Single choice
A company has deployed a new cloud solution and is required to meet security compliance. Which of the following will MOST likely be executed in the cloud solution to meet security requirements?
-
A
-
B
-
C
-
D
Reveal answer details
Close answer details
Correct answerC
ExplanationVulnerability testing is a type of security testing that identifies and evaluates the weaknesses or flaws in a system or service that could be exploited by attackers. Vulnerability testing can help meet security compliance requirements when deploying a new cloud solution, as it can reveal any potential security risks or gaps in the cloud environment and provide recommendations for remediation or mitigation. Vulnerability testing can also help improve security posture and performance, as it can prevent or reduce the impact of cyberattacks, data breaches, or service disruptions. References: CompTIA Cloud+ Certification Exam Objectives, page 14, section 2.7
Question 55
Multiple choice
A company has decided to scale its e-commerce application from its corporate datacenter to a commercial cloud provider to meet an anticipated increase in demand during an upcoming holiday. The majority of the application load takes place on the application server under normal conditions. For this reason, the company decides to deploy additional application servers into a commercial cloud provider using the on-premises orchestration engine that installs and configures common software and network configurations. The remote computing environment is connected to the on-premises datacenter via a site-to-site IPSec tunnel. The external DNS provider has been configured to use weighted round-robin routing to load balance connections from the Internet. During testing, the company discovers that only 20% of connections completed successfully. INSTRUCTIONS Review the network architecture and supporting documents and fulfill these requirements: Part 1: 1. Analyze the configuration of the following components: DNS, Firewall 1, Firewall 2, Router 1, Router 2, VPN and Orchestrator Server. 2. Identify the problematic device(s). Part 2: 1. Identify the correct options to provide adequate configuration for hybrid cloud architecture. 2. If at any time you would like to bring back the initial state of the simulation, please click the Reset All button. Part 1: Cloud Hybrid Network Diagram         Part 2: Only select a maximum of TWO options from the multiple choice question
-
A
Update the PSK (Pre-shared key) in Router 2.
-
B
Update the A record on the DNS from 2.2.2.2 to 1.1.1.1.
-
C
Promote deny All to allow All in Firewall 1 and Firewall 2.
-
D
Change the Address Space on Router 2.
-
E
Change internal IP Address of Router 1.
-
F
Reverse the Weight property in the two CNAME records on the DNS.
-
G
Add the Application Server at on-premises to the Load Balancer.
Reveal answer details
Close answer details
Correct answersA, D
ExplanationPart 1: Router 2 The problematic device is Router 2, which has an incorrect configuration for the IPSec tunnel. The IPSec tunnel is a secure connection between the on-premises datacenter and the cloud provider, which allows the traffic to flow between the two networks. The IPSec tunnel requires both endpoints to have matching parameters, such as the IP addresses, the pre-shared key (PSK), the encryption and authentication algorithms, and the security associations (SAs) . According to the network diagram and the configuration files, Router 2 has a different PSK and a different address space than Router 1. Router 2 has a PSK of "1234567890", while Router 1 has a PSK of "0987654321". Router 2 has an address space of 10.0.0.0/8, while Router 1 has an address space of 192.168.0.0/16. These mismatches prevent the IPSec tunnel from establishing and encrypting the traffic between the two networks. The other devices do not have any obvious errors in their configuration. The DNS provider has two CNAME records that point to the application servers in the cloud provider, with different weights to balance the load. The firewall rules allow the traffic from and to the application servers on port 80 and port 443, as well as the traffic from and to the VPN server on port 500 and port 4500. The orchestration server has a script that installs and configures the application servers in the cloud provider, using the DHCP server to assign IP addresses. Part 2: The correct options to provide adequate configuration for hybrid cloud architecture are: Update the PSK (Pre-shared key) in Router 2. Change the Address Space on Router 2. These options will fix the IPSec tunnel configuration and allow the traffic to flow between the on-premises datacenter and the cloud provider. The PSK should match the one on Router 1, which is "0987654321". The address space should also match the one on Router 1, which is 192.168.0.0/16.
Question 56
Single choice
A security team recently hired multiple interns who all need the same level of access. Which of the following controls should the security team implement to provide access to the cloud environment with the least amount of overhead?
-
A
-
B
-
C
-
D
Group-based access control
Reveal answer details
Close answer details
Correct answerD
ExplanationImplementing group-based access control is the most efficient way to provide access to multiple interns who require the same level of access. This method allows the security team to assign permissions to a group rather than to individual user accounts, thereby reducing the administrative overhead involved in managing access rights for each intern individually. References: CompTIA Cloud+ Certification Study Guide (Exam CV0- 004) by Scott Wilson and Eric Vanderburg
Question 57
Single choice
Which of the following container storage types loses data after a restart?
-
A
-
B
-
C
-
D
Reveal answer details
Close answer details
Correct answerC
ExplanationIn the context of container storage, ephemeral storage types are designed to be temporary, losing their data when the container is restarted or deleted. This is in contrast to persistent volumes, which retain data across container restarts and lifecycle, and object and block storage, which are used for specific types of data storage but not inherently temporary. Ephemeral storage is often used for temporary computation data, caching, or any data that doesn't need to persist beyond the lifecycle of the container instance. References: CompTIA Cloud+ CV0-004 Study Guide and Official CompTIA Content
Question 58
Single choice
Which of the following communication methods between on-premises and cloud environments would ensure minimal-to-low latency and overhead?
-
A
-
B
-
C
-
D
Reveal answer details
Close answer details
Correct answerC
ExplanationA direct connection between on-premises and cloud environments involves a dedicated, private connection that does not traverse the public internet. This setup ensures minimal-to-low latency and overhead, providing more consistent network performance and reliability compared to other methods like VPNs or public internet connections, making it suitable for high-volume or latency-sensitive applications.
Question 59
Single choice
A company's website development team made some code changes to implement a new feature. The development team published the changes via a code pipeline and verified that the feature is in the development environment. However, the testing team is unable to see the new feature when executing the test plan. Which of the following steps should the cloud administrator take first to identify the cause of the issue?
-
A
Roll back the development pipeline to revert and reapply the changes.
-
B
Confirm that the deployment has been completed in the QA environment.
-
C
Switch the application load balancer to use the blue environment
-
D
Update the policies on the CASB to allow access to the test environment.
Reveal answer details
Close answer details
Question 60
Single choice
An DevOps engineer is receiving reports that users can no longer access the company's web application after hardening of a web server. The users are receiving the following error: ERR_SSLJ/ERSION_OR_CIPHER_MISMATCH. Which of the following actions should the engineer take to resolve the issue?
-
A
-
B
Configure TLS 1.2 or newer.
-
C
-
D
Reveal answer details
Close answer details
Correct answerB
ExplanationTo resolve the ERR_SSL_VERSION_OR_CIPHER_MISMATCH error after hardening a web server, the engineer should configure the server to use TLS 1.2 or newer. This error often occurs when the server or client supports an outdated version of SSL/TLS or incompatible cipher suites. Updating to a modern, secure version of TLS ensures compatibility and enhances security. References: The CompTIA Cloud+ certification includes governance, risk, compliance, and security for the cloud, emphasizing the importance of implementing up-to-date security protocols like TLS to protect data in transit and ensure secure communications in cloud environments.
Question 61
Single choice
A network administrator is budding a site-to-site VPN tunnel from the company's headquarters office 10 the company's public cloud development network. The network administrator confirms the following: The VPN tunnel is established on the headquarter office firewall. While inside the office, developers report that they cannot connect to the development network resources. While outside the office on a client VPN, developers report that they can connect to the development network resources. The office and the client VPN have different IP subnet ranges. The firewall flow logs show VPN traffic is reaching the development network from the office. Which of the following is the next step the next network administrator should take to troubleshoot the VPN tunnel?
-
A
Review the development network routing table.
-
B
Change the ciphers on the site-to-site VPN.
-
C
Restart the site-to-site VPN tunnel.
-
D
Check the ACLS on the development workloads
Reveal answer details
Close answer details
Correct answerA
ExplanationThe next step in troubleshooting the VPN tunnel issue is to review the development network routing table. This action will help determine if the routing configurations are correctly directing traffic from the headquarters office through the VPN tunnel to the development network resources. Proper routing ensures that data packets find their way to the correct destinationwithin the cloud environment, which is critical for establishing successful communication between different network segments. References: CompTIA Cloud+ materials stress the importance of networking fundamentals in cloud environments, including VPN configurations and routing, to ensure secure and efficient connectivity between on-premises infrastructure and cloud resources.
Question 62
Single choice
Unknown attackers targeted a bank's website using HTTP flooding and infiltration via a SQL injection. Which of the following should the cloud engineer implement as a protection mechanism?
-
A
-
B
-
C
-
D
Reveal answer details
Close answer details
Correct answerD
ExplanationA web application firewall protects against application-layer attacks such as HTTP floods and SQL injection by filtering and blocking malicious web traffic before it reaches the application.
Question 63
Single choice
A cloud engineer logs in to Grafana. Which of the following actions is the engineer most likely trying to accomplish?
-
A
Deploying a new version of an application
-
B
Observing an application's health
-
C
Putting an application into a container
-
D
Pushing new code to the Git source
Reveal answer details
Close answer details
Correct answerB
ExplanationGrafana is a monitoring and observability platform used to visualize metrics, logs, and performance data through dashboards. A cloud engineer logging in to Grafana is most likely checking the health, performance, and operational status of an application or infrastructure.
Question 64
Single choice
An administrator received a report that company data has been compromised. The compromise occurred on a holiday, and no one in the organization was working. While reviewing the logs from the holiday, the administrator noted the following details:  The most appropriate action for the cloud security analyst to recommend is using CIS-hardened images. These images are pre-configured by the Center for Internet Security to provide security benchmark standards that help in mitigating vulnerabilities in publicly available container images. Which of the following accounts should the administrator disable to prevent a further breach?
-
A
-
B
-
C
-
D
Reveal answer details
Close answer details
Correct answerD
ExplanationBased on the provided log details, the account of the Software Developer was used to gain unauthorized access. This account should be disabled to prevent further breaches, especially considering no one from the organization was working during the holiday, suggesting a compromised account. References: CompTIA Cloud+ Study Guide (Exam CV0-004) - Chapter on Cloud Security Posture
Question 65
Single choice
A software engineer needs to transfer data over the internet using programmatic access while also being able to query the data. Which of the following will best help the engineer to complete this task?
-
A
-
B
-
C
-
D
Reveal answer details
Close answer details
Correct answerD
ExplanationGraphQL is the best option for transferring data over the internet with programmatic access and querying capabilities. It is a query language for APIs and a runtime for executing those queries with existing data, providing a more efficient, powerful, and flexible alternative to the REST API. References: Data transfer and querying methods are part of the technical knowledge associated with cloud computing, as included in CompTIA Cloud+.
Question 66
Single choice
Which of the following would help a project manager determine whether project goals have been achieved?
-
A
-
B
Key performance indicators
-
C
-
D
Reveal answer details
Close answer details
Question 67
Single choice
A cloud engineer is provisioning a new application that requires access to the organization's public cloud resources. Which of the following is the best way for the cloud engineer to authenticate the application?
-
A
-
B
-
C
-
D
Reveal answer details
Close answer details
Correct answerA
ExplanationThe best way to authenticate an application requiring access to an organization's public cloud resources is through the use of an access key. Access keys provide a secure means of authentication for applications and services without the need for interactive login credentials. This method is particularly useful for automated processes or applications that need to interact with cloud services programmatically, ensuring secure and efficient access control. References: CompTIA Cloud+ content emphasizes the importance of secure authentication mechanisms, such as access keys, in managing and securing access to cloud resources, aligning with best practices for cloud security and application deployment.
Question 68
Single choice
A cloud engineer is deploying a cloud solution that will be used on premises with need-to-know access. Which of the following cloud deployment models best meets this requirement?
-
A
-
B
-
C
-
D
Reveal answer details
Close answer details
Correct answerC
ExplanationA private cloud deployment model is the most appropriate when the requirement is for 'need-to-know' access, as it offers a more secure environment with resources dedicated to a single organization. It can be hosted on-premises or off-premises but is maintained on a private network, ensuring greater control over the data, security, and compliance when compared to other cloud models. References: CompTIA Cloud+ Certification Study Guide (Exam CV0-004) by Scott Wilson and Eric Vanderburg
Question 69
Single choice
Which of the following facilitates the continuous deployment of cloud applications without performing a clean install on each iteration?
-
A
-
B
-
C
-
D
Reveal answer details
Close answer details
Correct answerC
ExplanationContainer images package applications and their dependencies, enabling continuous deployment by quickly updating containers without full clean installs each time.
Question 70
Single choice
Which of the following storage types should be used to provide the highest IOPS?
-
A
-
B
-
C
-
D
Reveal answer details
Close answer details
Correct answerC
ExplanationAll-flash storage delivers the highest IOPS because solid-state drives provide significantly faster read/write operations compared to other storage types.
Question 71
Single choice
A cloud administrator is choosing a backup schedule for a new application platform that creates many small files. The backup process impacts the performance of the application, and backup times should be minimized during weekdays. Which of the following backup types best meets the weekday requirements?
-
A
-
B
-
C
-
D
Reveal answer details
Close answer details
Question 72
Single choice
Which of the following is a difference between a SAN and a NAS?
-
A
A SAN works only with fiber-based networks.
-
B
A SAN works with any Ethernet-based network.
-
C
A NAS uses a faster protocol than a SAN
-
D
A NAS uses a slower protocol than a SAN.
Reveal answer details
Close answer details
Correct answerD
ExplanationA NAS (Network Attached Storage) typically uses file-level protocols such as NFS or SMB, which are generally considered slower and less efficient than the block-level protocols used by SANs (Storage Area Networks), such as iSCSI or Fibre Channel. SANs are designed for high performance and low latency, making them more suitable for applications requiring fast and efficient storage access.
Question 73
Single choice
Which of the following enables CSPs to offer unlimited capacity to customers?
-
A
-
B
Global data center distribution
-
C
-
D
Reveal answer details
Close answer details
Correct answerC
ExplanationReferences: https://learn.saylor.org/mod/page/view.php?id=27582
Question 74
Single choice
Users report being unable to access an application that uses TLS 1.1. The users are able to access other applications on the internet. Which of the following is the most likely reason for this issue?
-
A
The security team modified user permissions.
-
B
Changes were made on the web server to address vulnerabilities.
-
C
Privileged access was implemented.
-
D
The firewall was modified.
Reveal answer details
Close answer details
Correct answerB
ExplanationIf users are unable to access an application that uses TLS 1.1 but can access other internet applications, it is likely that changes were made on the web server to address vulnerabilities, such as disabling outdated and less secure protocols like TLS 1.1. References: CompTIA Cloud+ Study Guide (Exam CV0-004) - Chapter on Cloud Security
|