Easter Special Sale - Limited Time 60% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: 575363r9

Welcome To DumpsPedia

Magento-Certified-Professional-Cloud-Developer Sample Questions Answers

Questions 4

Your team is working on two ma)or changes affecting the product page and you want the ability to implement andtest these changes in parallel.Your company is using the Pro plan

How do you achieve this using the Project Web Ul?

Options:

A.

Create branches from Production to ensure the catalog is up to date

B.

Create branches from Integration to facilitate merging

C.

Create branches from the Magento Cloud Docker image to ensure the changes are made on the most recent codebase

D.

Create branches from Staging to ensure the changes are tested on an environment similar to Production

Buy Now
Questions 5

Yourcompany decided too move a Magento store to a subdomain https://shop.coinpany.ccm/ and redirect traffic from the old URL httpa://company.com/ to the new one. Your company is using the Starter plan.

How do you implement the redirect?

Options:

A.

Configurea rewrite rule In the . htaccessfile In the pub folder

B.

Submit a support ticket to add the redirect on the web-server level

C.

Add a route using the MANGENTO_CLOUD_ROUTES environment variable.

D.

Add a routeInto the .magento/routes, yamlconfiguration file

Buy Now
Questions 6

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 youachieve this?

Options:

A.

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

B.

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

C.

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

D.

Use the warm_up_PAGES variable in the .magento.env.yaml file to cache the pages during postdeploy

Buy Now
Questions 7

You want to improve the ability to monitor Production deployments by setting up an email notification system How do you achieve this?

Options:

A.

Enable Deployment Notifications under Configure Environment > Settings in the Protect Web

B.

Build a custom module which hooks into the deployment phase and sends emails in real-time

C.

Configure log notifications in the .magento.env.yaml file

D.

Use the magento-cloud environment:deploy:email command toenable email notifications

Buy Now
Questions 8

You add a newComposer dependency utilizing composer require. After testing composer install locally, you add the Composer local and Json files and perform a deployment. The build phase fails as Composer is unable to resolve the dependencies.

Why do this happen/

Options:

A.

The versions of PHP on your local environment and integration environment differ

B.

Your commit needs to contain the updated vendor folder

C.

The project cache should have been cleared with the magento-Cloud:project-build-cache command

D.

You did not execute the install locally with --require-dev

Buy Now
Questions 9

You are working with a new developer who needs to be able to deploy code and view logs on Magento Commerce Cloud 60.

What must you do to give them access?

Options:

A.

In the .magento.app.yaml file, add their email under Users. They need to enter their SSH public key.

B.

Add their SSH public key to a file named . ssh/authorized_keys and deploy the change.

C.

In the Cloud Project Web Ul. click Add User to add their email They need to enter their SSH public key.

D.

Add a Magento admin user for them and paste the SSH public key into their user's SSH Key field, which is available only on Magento Commerce Cloud

Buy Now
Questions 10

You are going to create a backup of an Integration branch before implementing some new feature What are two ways to create the backup of the integration branch?

Choose 2 answers

Options:

A.

Create a snapshot using the ece-tools snapshot:create command

B.

Create a snapshot using the snapshot button In the Project Web Ul

C.

Create a snapshot using the magento-cloud snapshot: create command

D.

Submit a support ticket requesting a backup be made

Buy Now
Questions 11

You fixed an issue in a third-party extension using a patch named m2-hotfixes/extension-fix.patch Before committing the patch to the repository you want to test it locally

How do you test a patch in a clean working copy?

Options:

A.

Commit the patch because the pre-commit hook will abort the commitit any hotfix causes an issue

B.

Run the command git apply m2-hotfixea/extension-fix.patch

C.

Run the command bin/magento setup:hotfix:apply --patch=m2-hctfixes/extension-fix.patch

D.

Configure a deploy hook in .magento.app.yamlthat executes

vendor/bin/ece-tools hotfix:apply —dry-run

Buy Now
Questions 12

You are reviewing a third party extension for Magento Commerce Cloud compatibility

You discover the module writes to a customdirectory called internal/ withinthe 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?

Options:

A.

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

B.

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

C.

Request the vendor make the directory configurable in the Magento admin

D.

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

Buy Now
Questions 13

You are upgrading a project to the latest version of Magento Commerce Cloud and part of the process involves a PHP version upgrade.This is now ready to be tested by the QA Team on the Integration environment.

How do you apply the PHP version upgrade?

Options:

A.

Change the PHP version in the .magento. app. yamlfile and re-deploy

B.

SSH Into the Integration environment and upgrade PHP manually

C.

Change the php_version configuration in the ,magento,env,yamlfile and re-deploy

D.

Use the magento-cloud CLI tool to update the php_version variable

Buy Now
Questions 14

After installing a Magento extension that implements a new class for a site and deploying this to an integration environment you see it is notworking.

In the logs you discover the following error:

How do you fix this?

Options:

A.

A support ticket should be riled with Magento Commerce Cloud to fix the filesystem issue

B.

The extension should be modified so it does not write to generated at runtime

C.

The file should be generated locally and pushed via Git

D.

The generated_code_WRITABLEvariable should be set to true whenever using extensions

Buy Now
Questions 15

You upgraded an integration branch in your Magento Commerce Cloud project, but received an error during the deploy phase What are the two ways to review details about the deployment?

Choose 2 answers

Options:

A.

View the logs in the var/reports/ directory on the remote server

B.

View the exception.log file in the var/log/ directory

C.

View the depioy.log file in the /var/log/ directory

D.

View the cloud.log file in the var/log/ directory

Buy Now
Questions 16

You need to install a third party extension which is provided in a tar archive

It expands to a folder Structure in app/code/MyCompany/MyMedule.

Which action do you take to install the extension?

Options:

A.

Use the composer package command to create a composer package and install it with composer require

B.

Use the composer-merge-plugin to enable support for extension in app/code

C.

Add it to the project in app/code and commit it to git

D.

Request composer repository credentials from the extension vendor

Buy Now
Questions 17

You added the env:ADMIN_PASSWORD variable in the Project Web Ul to change a Magento admin user's password After deployment you are unable to login using the new password

What causes this?

Options:

A.

When you add a variable. the build stage is being skipped because the codebase has not been changed You must push a commit to trigger a full deploy

B.

Deploy scripts read configuration from the environment variable calledmagento_cloud_variables. which contains an array of variables which were set without the env: prefix

C.

Variables which are set using the Project Web Ul are not available on the build phase the admin password variable should be

set in the . magento.env. yaml file

D.

The sensitive option is required for env:ADMIN PASSWORDvariable

Buy Now
Questions 18

You are setting up a third-party integration only for the Production environment, which connects to an external RabbitMQ server.

Where do you put the configuration?

Options:

A.

In the app/etc/env.php file

B.

In the QUEUE_ConFIGURATION variable added in theproject Web UI or magento-cloud CLI

In the env:QUEUE_CONFIGURATION variable added in the project Web UI or magento Cloud CLI.

C.

In the QUEUE_CONFIGURATION variable in the ,magento, env, yaml file

Buy Now
Exam Code: Magento-Certified-Professional-Cloud-Developer
Exam Name: Magento Certified Professional Cloud DeveloperExam
Last Update: May 14, 2024
Questions: 60
$64  $159.99
$48  $119.99
$40  $99.99
buy now Magento-Certified-Professional-Cloud-Developer