Download Magento.Magento-Certified-Professional-Cloud-Developer.VCEplus.2020-06-15.60q.vcex

Download Exam

File Info

Exam Magento Certified Professional Cloud Developer
Number Magento-Certified-Professional-Cloud-Developer
File Name Magento.Magento-Certified-Professional-Cloud-Developer.VCEplus.2020-06-15.60q.vcex
Size 73 KB
Posted Jun 15, 2020
Download Magento.Magento-Certified-Professional-Cloud-Developer.VCEplus.2020-06-15.60q.vcex

How to open VCEX & EXAM Files?

Files with VCEX & EXAM extensions can be opened by ProfExam Simulator.

Purchase

Coupon: MASTEREXAM
With discount: 20%






Demo Questions

Question 1

You are working with a new developer who needs to be able to deploy code and view logs on Magento Commerce Cloud.
What must you do to give them access?


  1. In the .magento.app.yaml file, add their email under Users. They need to enter their SSH public key.
  2. Add their SSH public key to a file named .ssh/authorized_keys and deploy the change.
  3. In the Cloud Project Web UI, click Add User to add their email. They need to enter their SSH public key.
  4. 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.
Correct answer: B
Explanation:
Reference: https://devdocs.magento.com/cloud/before/before-workspace-ssh.html
Reference: https://devdocs.magento.com/cloud/before/before-workspace-ssh.html



Question 2

You have a Starter project. Your code is ready for testing in the Staging environment, but you need the latest data from Production.
What do you do to update the Staging environment?


  1. Log in to the Project Web UI, choose the Staging environment, and click Sync
  2. Log in to the Project Web UI, choose the Staging environment, and click Merge
  3. Checkout the Staging branch and use the git push origin -f command
  4. Checkout the Production environment and use the magento-cloud sync CLI command
Correct answer: B
Explanation:
Reference: https://devdocs.magento.com/cloud/live/stage-prod-migrate-prereq.html
Reference: https://devdocs.magento.com/cloud/live/stage-prod-migrate-prereq.html



Question 3

You need to specify the admin password using an environment variable. You have created an environment variable env:ADMIN_PASSWORD with a valid password. When attempting to log in to the Magento Admin it is not accepting the new password.
How do you correct the environment variable?


  1. The Sensitive option is checked by default and must be disabled
  2. The env:ADMIN_PASSWORD variable can only be used for an initial installation
  3. The environment variable should not have the env: prefix
  4. The ADMIN_PASSWORD variable should be configured via .magento.env.yaml
Correct answer: C
Explanation:
Reference: https://devdocs.magento.com/cloud/env/environment-vars_magento.html
Reference: https://devdocs.magento.com/cloud/env/environment-vars_magento.html



Question 4

While investigating an inherited Magento Commerce Cloud project, you notice the following SCD_MATRIX configuration in .magento.env.yaml: 
 
What is the effect of this configuration?


  1. Static content for frontend themes is generated during the deploy phase
  2. All frontend theme static content will be reused from the previous deployment
  3. Only the static content for the adminhtml area will be generated
  4. Static content for all locales will be generated for all frontend themes
Correct answer: D
Explanation:
Reference: https://devdocs.magento.com/cloud/env/variables-deploy.html
Reference: https://devdocs.magento.com/cloud/env/variables-deploy.html



Question 5

A project has a Magento cron job implemented to export new order data to a file. This process can also be triggered by a custom bin/magento command. The functionality uses a lock file in var/locks to prevent concurrent execution.
There are instances when the process gets locked after Production deployments and order data is not exported.
How do you prevent this from happening?


  1. Use the VAR_LOCKS_CLEAR variable available for the post_deploy stage in the .magento.env.yaml file
  2. Write a custom post_deploy hook to delete orphan lock files and include it in the .magento.app.yaml file
  3. Use the VAR_LOCKS_CLEAR variable available for the build stage in the .magento.app.yaml file 
  4. You must access the Production environment and delete the lock file
Correct answer: A



Question 6

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. Setting this record causes sent email to be properly authenticated and not show in junk folders.
  2. Setting this record enables the page caching service for your site.
  3. Setting this record is needed on Pro to allow upsizing servers without downtime.
  4. Setting this record reduces the time it takes for customers to start seeing your Magento 2 site.
Correct answer: D
Explanation:
Reference: https://devdocs.magento.com/cloud/live/site-launch-checklist.html 
Reference: https://devdocs.magento.com/cloud/live/site-launch-checklist.html 



Question 7

While setting up a Magento project, you run the following command:
magento-cloud variable:update ADMIN_USERNAME --value=alice
What will this command do?


  1. Configure the Magento Commerce Cloud tools to use alice for API call authentication.
  2. Change your username to alice for logging into the magento-cloud CLI tool.
  3. Update the Magento cloud/admin/username config variable to alice.
  4. Change the username of the default administrator account to alice.
Correct answer: C



Question 8

Exploring the Production environment, you find MYSQL_USE_SLAVE_CONNECTION is enabled.
What is the purpose of this setting?


  1. To split the database tables between the three Production servers and improve performance.
  2. To enable fault tolerance on the MySQL cluster.
  3. To utilize the read-only slave servers and improve the overall performance.
  4. To allow database backups from a MySQL slave server with minimal impact on the Production site.
Correct answer: C
Explanation:
Reference: https://devdocs.magento.com/cloud/env/variables-deploy.html
Reference: https://devdocs.magento.com/cloud/env/variables-deploy.html



Question 9

A client has an in-house design team which manages content on their Magento Commerce Cloud project. This content is rapidly changing and they would like the ability to maintain their own stylesheets in a structured way without affecting site uptime.
How do you achieve this on the Integration branch?


  1. Modify the writeable directories on the Integration Environment by using the .magento.env.yaml file.
  2. Add a custom command to the build hook in the .magento.app.yaml file to retrieve the stylesheets from a client hosted location.
  3. The Magento Infrastructure Team needs to create a writable directory in which the stylesheets can be uploaded.
  4. Use the .magento.app.yaml file to create a mount in the pub directory.
Correct answer: D



Question 10

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? 


  1. In the app/etc/env.php file
  2. In the QUEUE_CONFIGURATION variable added in the Project Web UI or magento-cloud CLI
  3. In the env:QUEUE_CONFIGURATION variable added in the Project Web UI or magento-cloud CLI
  4. In the QUEUE_CONFIGURATION variable in the .magento.env.yaml file
Correct answer: B
Explanation:
Reference: https://devdocs.magento.com/cloud/project/project-conf-files_services-rabbit.html
Reference: https://devdocs.magento.com/cloud/project/project-conf-files_services-rabbit.html









CONNECT US

Facebook

Twitter

PROFEXAM WITH A 20% DISCOUNT

You can buy ProfExam with a 20% discount!



HOW TO OPEN VCEX FILES

Use ProfExam Simulator to open VCEX files