Salesforce-Platform-Development-Lifecycle-and-Deployment-Architect Practice Test
Salesforce Spring 25 Release 226 Questions
Universal Containers (UC) currently uses the org development model and utilizes the
Salesforce CLI as the deployment tool. After the feature release artifact (a .zip file) has
been tested in a lower sandbox, it is being deployed to the full sandbox for performance
testing and production deployment readiness check-Since quick deployment options are
not being used, what is the correct way to deploy the artifact to the full sandbox?
A. Authorize to the Full sandbox org; Validate with sfdx:source:deploy; On successful
validation, deploy with sfdx:source:deploy
B. Authorize to the Fullsandbox org; Validate with sfdximdapi:deploy; On successful
validation, deploy with sfdx:mdapi:deploy
C. Authorize to the Full sandbox; validate with sfdx: source: deploy; On successful
validation, deploy with sfdx;mdapi;deploy
D. Authorize to the Full sandbox org; Validate with sfdx:mdapi:deploy; On successful
validation, deploy with sfdx:source:deploy
B. Authorize to the Fullsandbox org; Validate with sfdximdapi:deploy; On successful
validation, deploy with sfdx:mdapi:deploy
Explanation: The correct way to deploy the artifact to the full sandbox is to authorize to the
full sandbox org, validate with sfdx:mdapi:deploy, and on successful validation, deploy with
sfdx:mdapi:deploy. This is because the artifact is a .zip file, which is in the metadata API
format, and not the source format. Therefore, the sfdx:mdapi:deploy command should be
used instead of the sfdx:source:deploy command. See Deploy Metadata Using Metadata
API for more details.