Skip to main content

MAGENTO-CERTIFIED-PROFESSIONAL-CLOUD-DEVELOPER Real Exam Questions

Magento Certified Professional Cloud Developer

60 questions available · Page 1 of 6

Updated Exam DumpsVerified AnswersPass Guarantee

Get Complete Exam Dumps
Question 1 Single choice

Magento Commerce Cloud comes with a variety of additional features that sets it apart from the on-premise Magento Commerce and Magento Open Source platforms.

What feature improves the release update process and simplifies commands to create a backup of the database, apply custom patches, and verify environment configuration?

  1. A

    Docker environment

  2. B

    Magento Cloud-specific CLI

  3. C

    Cloud configuration wizards

  4. D

    ECE-Tools package

Show answer and explanation

Correct answer: D

Explanation

References:
https://devdocs.magento.com/cloud/bk-cloud.html

Question 2 Single choice

While launching a site migrated from Magento 1, you are instructed to change the website CNAME record in your DNS provider by Magento for go live.

What is the purpose of setting this record?

  1. A

    Setting this record causes sent email to be properly authenticated and not show in junk folders.

  2. B

    Setting this record enables the page caching service for your site.

  3. C

    Setting this record is needed on Pro to allow upsizing servers without downtime.

  4. D

    Setting this record reduces the time it takes for customers to start seeing your Magento 2 site.

Show answer and explanation

Correct answer: D

Explanation

References:
https://devdocs.magento.com/cloud/live/site-launch-checklist.html

Question 3 Single choice

A merchant states the downtime during the deployment phase is too long. After analysis, it is determined the static content deployment is the longest process. Static content needs to be available immediately after deployment.

How can the static content deployment time be reduced?

  1. A

    Move static content deploy to the build phase

  2. B

    Commit var/view_preprocessed to git so it already exists during the deployment phase

  3. C

    Set stage/global/SKIP_SCD to true

  4. D

    Reduce the number of store views per website

Show answer and explanation

Correct answer: A

Explanation

References:
https://support.magento.com/hc/en-us/articles/115003169574-Reduce-deployment-downtime-on-Magento-Cloud-with-Configuration-Managementsachin

Question 4 Single choice

You are reviewing a third party extension for Magento Commerce Cloud compatibility. You discover the module writes to a custom directory called internal/ within the Magento base directory.

The directory has to be shared by all web servers.

What do you do so the module can be used on Magento Commerce Cloud?

  1. A

    Create a symlink from /tmp/internal to the internal/ folder

  2. B

    Declare a shared mount for the internal/ directory in .magento.app.yaml

  3. C

    Request the vendor make the directory configurable in the Magento admin

  4. D

    Add a patch for extension so it uses the subdirectory var/internal/ instead

Show answer and explanation

Correct answer: B

Question 5 Single choice

You are tasked to improve the user experience of the most visited product pages after deploying releases to Production. The aim is to reduce initial page load times.

How do you achieve this?

  1. A

    Create a custom build command and use CURL to cache the page

  2. B

    Use the Magento Admin to configure Fastly to cache the pages after deployment

  3. C

    Modify the post_deploy hook in the .magento.app.yaml file to include the URLs as arguments to the ece-tools command

  4. D

    Use the WARM_UP_PAGES variable in the .magento.env.yaml file to cache the pages during post_deploy

Show answer and explanation

Correct answer: C

Explanation

References:
https://devdocs.magento.com/cloud/project/project-conf-files_magento-app.html

Question 6 Single choice

You have created a new Integration branch and did not receive the administrator email with the password reset link.

What is prohibiting the email from sending?

  1. A

    You have not enabled the Magento Email module with bin/magento module:enable

  2. B

    The Outgoing Emails setting is disabled under Environment Settings in the Project Web UI

  3. C

    Email is always disabled on all integration branches

  4. D

    You have not configured SendGrid for this environment

Show answer and explanation

Correct answer: B

Question 7 Single choice

You need to increase the Admin Session Lifetime up to 86400 seconds for the branch named Integration and children branches, but not for the Staging and Production branches.

How do you update this on the Integration branch and its child branches?

  1. A

    On your local environment, set the Admin Session Lifetime in the Magento admin backend under Stores > Configuration > Advanced > Admin > Security then dump this setting into the app/etc/
    config.php file and commit this file

  2. B

    Add the following variable on the Integration branch and set its value to 86400:
    env:CONFIG_STORES_DEFAULT_ADMIN_SECURITY_SESSION_LIFETIME

  3. C

    Run the following Magento CLI command:
    php bin/magento config:set admin/security/session_lifetime 86400

  4. D

    On the Integration environment, set the Admin Session Lifetime in the Magento admin backend under Stores > Configuration > Advanced > Admin > Security

Show answer and explanation

Correct answer: D

Explanation

References:
https://community.magento.com/t5/Magento-1-x-Programming/Magento-1-Admin-Session-time-countdown-clock/td-p/106004

Question 8 Single choice

You want to exclude some themes from static assets generation only for integration environments. You are trying to choose where to set the SCD_EXCLUDE_THEMES variable in the .magento.env.yaml file or in the Project Web UI.

What prevents the usage of the .
magento.env.yaml file?

  1. A

    Child environments inherit the variable when you use the .magento.env.yaml file

  2. B

    The code from integration would be merged into the Staging and Production branches

  3. C

    The .magento.env.yaml file can contain only deployment configuration options, which are only available if static assets generation runs on the deploy phase

  4. D

    Only variables which are set using the Project Web UI has the option visible during build

Show answer and explanation

Correct answer: C

Question 9 Single choice

You have a project deploying Static Content on the deploy phase. This process is optimized using the SCD_MATRIX configuration in the deploy stage of the .magento.env.yaml file.

After moving the process to the build phase, Static Content Deployment is no longer optimized and all themes and all locales are generating.

How do you resolve this?

  1. A

    The SCD_MATRIX configuration is only used on the deploy phase

  2. B

    Add the --use_scd_matrix flag to the ece-tools build:generate command in the .magento.app.yaml file

  3. C

    Move the SCD_MATRIX configuration to the build stage of the .magento.env.yaml file

  4. D

    Configure the variable ENABLE_SCD_MATRIX in the .magento.env.yaml file

Show answer and explanation

Correct answer: C

Explanation

References:
https://devdocs.magento.com/cloud/deploy/static-content-deployment.html

Question 10 Single choice

You need to directly access the database that belongs to your Integration environment from your local environment.

How do you achieve this?

  1. A

    Find the connection information from the env.php file and connect with your local MySQL client

  2. B

    Collect the SSH connection details using magento-cloud ssh --pipe and connect with your local MySQL client

  3. C

    Add the ece-tools db-expose command to your deploy hook

  4. D

    Use the magento-cloud db:sql command

Show answer and explanation

Correct answer: C