πŸ”

CV0-004 β€” questions

Page 7 of 9 Β· 180 total questions.

Topic 1 Β· Question 122

An on-call cloud engineer receives a critical alert about an e-commerce web server being unresponsive. Which of the following steps should the engineer take first?

  • ATriage (correct answer)
  • BRemediation
  • CEscalation
  • DMonitoring
Reveal answer & explanation
Correct answer: A

The correct answer is A. Option A: Triage

Topic 1 Β· Question 123

Which of the following files should be used to install software with a package manager?

  • Apackage.json
  • Bpackage.zip
  • Cpackage.deb (correct answer)
  • Dpackage.tar
Reveal answer & explanation
Correct answer: C

The correct answer is C. Option C: package.deb

Topic 1 Β· Question 124

An application that is running on containers writes files to the operating system after processing data. The produced output files are stored under /project-files owned by root. A cloud engineer needs to make sure no output files are owned by root. Which of the following actions should the engineer take to best achieve this objective?

  • AMount the volume in Docker using --user=myapp.
  • BAdd USER myapp to the Dockerfile and rebuild the container. (correct answer)
  • CRun chown myapp:myapp /project-files with cron every minute.
  • DModify the container application to execute sudo -u myapp myapp.
Reveal answer & explanation
Correct answer: B

The correct answer is B. Option B: Add USER myapp to the Dockerfile and rebuild the container.

Explanation

A container packages an application and dependencies while sharing the host kernel for lightweight isolation.

Topic 1 Β· Question 125

A cloud engineer is receiving multiple alerts from the infrastructure monitoring agent. The alerts state that all the VMs in the public subnet are at 100% CPU utilization. However, when the engineer checks the network utilization of the VMs, the network throughput is at normal levels. Which of the following is the most likely cause of this issue?

  • ARansomware
  • BCryptojacking (correct answer)
  • CDDoS
  • DZombie instances
Reveal answer & explanation
Correct answer: B

The correct answer is B. Option B: Cryptojacking

Topic 1 Β· Question 126

A cloud engineer is implementing a deployment strategy with the following requirements: β€’ At least two environments for production and development must be supported. β€’ Changes in one environment must not impact the other environment. β€’ The highest possible availability must be achieved. Which of the following deployment strategies should the engineer implement?

  • ARolling
  • BBlue-green (correct answer)
  • CIn-place
  • DCanary
Reveal answer & explanation
Correct answer: B

The correct answer is B. Option B: Blue-green

Topic 1 Β· Question 128

Which of the following interfaces is most commonly used for SSDs but not for HDDs?

  • ANVMe (correct answer)
  • BSerial-attached SCSI
  • CSATA
  • DiSCSI
Reveal answer & explanation
Correct answer: A

The correct answer is A. Option A: NVMe

Topic 1 Β· Question 129

A company experienced a data leak through its website. A security engineer, who is investigating the issue, runs a vulnerability scan against the website and receives the following output: Which of the following is the most likely cause of this leak?

Exhibit 1 for question 129
  • ARTMP port open
  • BSQL injection
  • CPrivilege escalation
  • DInsecure protocol (correct answer)
Reveal answer & explanation
Correct answer: D

The correct answer is D. Option D: Insecure protocol This option keeps traffic private / properly secured as required.

Topic 1 Β· Question 130

A cloud developer receives a security vulnerability scan report and needs to analyze and record the true positives. Which of the following vulnerability management steps is this an example of?

  • AAssessment (correct answer)
  • BIdentification
  • CScanning scope
  • DRemediation
Reveal answer & explanation
Correct answer: A

The correct answer is A. Option A: Assessment This option keeps traffic private / properly secured as required.

Topic 1 Β· Question 131

A company recently experienced a ransomware attack. The recovery process was slow because the on-site backups were compromised and off-site backups were required. Which of the following features would enable a faster recovery if a ransomware attack would happen again?

  • AIntegrity
  • BEncryption
  • CImmutability (correct answer)
  • DReplication
Reveal answer & explanation
Correct answer: C

The correct answer is C. Option C: Immutability

Topic 1 Β· Question 132

A SaaS provider introduced new software functionality for customers as part of quarterly production enhancements. After an update is implemented, users cannot locate certain transactions from an inbound integration. During the investigation, the application owner finds the following error in the logs: Error: REST API - Deprecated call is no longer supported in this release. Which of the following is the best action for the application owner to take to resolve the issue?

  • AUpdate the custom integration to use a supported function. (correct answer)
  • BInclude the custom integration in the quarterly testing scope.
  • CAsk the users to monitor the quarterly updates.
  • DRevert the application to the last stable quarterly release.
Reveal answer & explanation
Correct answer: A

The correct answer is A. Option A: Update the custom integration to use a supported function.

Topic 1 Β· Question 133

A developer is building a tool on the cloud that needs to allow other developers to programmatically read and write to the web application resources. Which of the following should the developer do to meet these requirements with the least complexity?

  • ABuild a REST API endpoint. (correct answer)
  • BAllow access via the cloud portal.
  • CProvision cloud-based SQL access.
  • DImplement RPC on the web application.
Reveal answer & explanation
Correct answer: A

The correct answer is A. Option A: Build a REST API endpoint. This option is the most fully managed / serverless choice, so it meets the requirement for the least operational overhead.

Topic 1 Β· Question 134

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?

  • AThe security team modified user permissions.
  • BChanges were made to address vulnerabilities. (correct answer)
  • CPrivileged access was implemented.
  • DThe network ACL was modified.
Reveal answer & explanation
Correct answer: B

The correct answer is B. Option B: Changes were made to address vulnerabilities.

Topic 1 Β· Question 135 Β· Select all that apply

A customer is migrating applications to the cloud and wants to grant authorization using the classification levels of each system. Which of the following should the customer implement to ensure authorization to systems is granted when the user and system classification properties match? (Choose two.)

  • AResource tagging (correct answer)
  • BSingle sign-on
  • CMultifactor authentication
  • DAttribute-based access control (correct answer)
  • EToken-based authentication
  • FBastion host
Reveal answer & explanation
Correct answer: A, D

The correct answer is A, D. Option A: Resource tagging Option D: Attribute-based access control

Topic 1 Β· Question 136

A bank was recently hacked. The bank reviews the logs to see how the attack occurred. The security administrator suspects the logs were manipulated because no traces of the attack can be found in them. Which of the following should have been enabled before the attack occurred?

  • AMetric and alerts
  • BTracing and aggregation
  • CDashboard and reporting
  • DVersioning and immutability (correct answer)
Reveal answer & explanation
Correct answer: D

The correct answer is D. Option D: Versioning and immutability This option keeps traffic private / properly secured as required.

Topic 1 Β· Question 137

Which of the following is the best tool to deploy template-based, containerized workloads on premises and on the cloud?

  • ADocker
  • BTerraform (correct answer)
  • CJenkins
  • DGit
Reveal answer & explanation
Correct answer: B

The correct answer is B. Option B: Terraform

Topic 1 Β· Question 138 Β· Select all that apply

A healthcare provider contacts a MSP about moving an on-premises infrastructure to the cloud. Which of the following requirements are most important for the MSP to consider when migrating this customer? (Choose two.)

  • ASecurity (correct answer)
  • BCost
  • CAvailability
  • DStorage
  • ECompliance (correct answer)
  • FCompute
Reveal answer & explanation
Correct answer: A, E

The correct answer is A, E. Option A: Security Option E: Compliance

Topic 1 Β· Question 139

A cloud engineer deploys two virtual machines and migrates a local web application and database, respectively. After the engineer updates the DNS records, the web application does not respond. Which of the following should the cloud engineer do to troubleshoot the issue?

  • AIncrease the size and throughput of the virtual machines to allow more concurrent sessions.
  • BVerify whether the operating systems in the virtual machines are compatible with the web application and database.
  • CCheck to ensure the new web application server configuration file points to the correct database location. (correct answer)
  • DRepeat the migration to discard any inconsistencies during the data transfer.
Reveal answer & explanation
Correct answer: C

The correct answer is C. Option C: Check to ensure the new web application server configuration file points to the correct database location.

Topic 1 Β· Question 140

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?

  • AAPI key (correct answer)
  • BCookie
  • CMFA
  • DUsername and password
Reveal answer & explanation
Correct answer: A

The correct answer is A. Option A: API key

Topic 1 Β· Question 141

Which of the following protocols is often used in IoT to reduce the amount of data exchanged?

  • AMQTT (correct answer)
  • BSMB
  • CNFS
  • DHTTPS
Reveal answer & explanation
Correct answer: A

The correct answer is A. Option A: MQTT

Topic 1 Β· Question 143

Which of the following is the correct order of the steps to take when a system is suspected of being vulnerable?

  • AScanning scope, identification, assessment, and remediation (correct answer)
  • BAssessment, identification, scanning scope, and remediation
  • CIdentification, scanning scope, assessment, and remediation
  • DAssessment, scanning scope, identification, and remediation
Reveal answer & explanation
Correct answer: A

The correct answer is A. Option A: Scanning scope, identification, assessment, and remediation

Showing questions 121–140 of 180 Β· Page 7 of 9