AD0-E711のPDF問題集で2023年02月19日最近更新された問題 [Q54-Q73]

Share

AD0-E711のPDF問題集で2023年02月19日最近更新された問題

AD0-E711試験問題有効なAD0-E711問題集PDF


Adobe AD0-E711 認定試験の出題範囲:

トピック出題範囲
トピック 1
  • Describe basics of Entity Attribute Value (EAV)
  • Given a scenario, work with JavaScript files (basic)
トピック 2
  • Given a scenario, use a DB schema to alter a database table
  • Describe models, resource models, and collections
トピック 3
  • Describe usage of CMS pages and blocks
  • Describe front-end usage of customer data
トピック 4
  • Given a scenario, describe basic usage of quote data
  • Given a scenario, create controllers
トピック 5
  • Identify the basics of category management and products management
  • Describe how the ACL works with roles and resources
トピック 6
  • Identify the files to use when creating a store
  • admin config and menu items
  • Given a scenario, describe basic checkout modifications
トピック 7
  • Given a scenario, configure the payment and shipping methods
  • Describe plugin, preference, event observers, and interceptors
トピック 8
  • Given a scenario, change
  • add
  • remove attribute sets and
  • or attributes
  • Describe Magento file structure

 

質問 54
Which two ways does Magento persist category relationships in the database? (Choose two.)

  • A. in the table catalog_category_index
  • B. in the parent_id field
  • C. Using comma-separated values in the parent-ids field
  • D. Using slash-separated values in the path field

正解: A,B

 

質問 55
A merchant tasked you to add an input field for notes to the Customer Account Information backend page.
Which three actions do you specify in a module's Data Patch to add a customer notes attribute? (Choose three.)

  • A. $customerSetup->addAttributeToSet('customer', $attributeSetIdCustomer, $groupId, 'notes');
  • B. $customerSetup->addAttribute('customer', 'notes', $options);
  • C. $cache->clean(['eav', 'db_ddl']);
  • D. $customerSetup->getConnection()->addColumn('customer_entity', 'notes', $columnSpecs);
  • E. $notesAttribute->setData('used_in_forms', ['adminhtml_customer']);

正解: B,C,E

 

質問 56
Which theme directory contains the static files that can be loaded directly?

  • A. assets
  • B. preprocessed
  • C. web

正解: C

 

質問 57
You are setting up a brand new Magento installation for a merchant who is migrating from Magento 1 to Magento 2.
Keeping in mind upgradability and the need to customize, which one do you choose?

  • A. Run php bin/magento setup:migrate <path-to-m1-installation> <new-version> command
  • B. Create a new Magento instance by using the bin/magento install command
  • C. Create a new Magento instance using composer create-project
  • D. Clone the magento/magento2 GitHub repository

正解: C

 

質問 58
You have been given the task of importing products from an external source. You decide to create a custom module to do this. The class handling the import creates a product for each record, sets the data on it and saves it to the database.
What do you inject into a constructor to represent each product you create?

  • A. \Magento\Catalog\Api\Data\ProductInterface
  • B. \Magento\Catalog\Model\ProductBuilder
  • C. \Magento\Catalog\Api\Data\ProductInterfaceFactory
  • D. \Magento\Catalog\Model\Product

正解: C

 

質問 59
While developing a module you need to modify an existing Data Patch.
How can you force Magento to execute an existing Data Patch file again?

  • A. By modifying the data_version value in the setup_module table
  • B. By changing the version of the Data Patch in the getVersion method
  • C. By deleting the record with the Data Patch class name from the table patch_list table
  • D. By removing the Data Patch, running the command: bin/magento setup:db-data:upgrade, then copying the file back and running the command again

正解: C

 

質問 60
You are developing a module MyCompany_StoreInfo to display information about brick and mortar stores on a frontend page. The displayed information varies based on the country of a given store.
What two elements automatically render their children? (Choose two.)

  • A. <block class="\Magento\Framework\View\Element\Template" name="shop.info.details"/>
  • B. <block class="\Magento\Framework\View\Element\AbstractBlock" name="shop.info.details"/>
  • C. <block class="\Magento\Framework\View\Element\Text\ListText" name="shop.info.details"/>
  • D. <container name="shop.info.details"/>

正解: C,D

 

質問 61
A new custom module is built for the existing Adobe Commerce store. A merchant has requested a few frontend updates. For this, a developer has to implement a custom style. What Is the location of the less file that will be included by default?

  • A. view/{area}/web/css/source/_module.less
  • B. view/(area}/web/css/source/main.less
  • C. view/{area}/web/css/style.less

正解: A

 

質問 62
Which command should be used to deploy static content?

  • A. set up:static-content :deploy
  • B. start:static-resources:deploy
  • C. startstatic-content:deploy

正解: A

 

質問 63
You need to find all orders in the processing state. You have written the code:

When you run the code, you get the following exception:

How do you resolve the exception?

  • A. Use dependency injection to load an instance of the SearchCriteria class
  • B. Clear generated code to get a new version of SearchCriteriaBuilder
  • C. Change the getList parameter to: $searchCriteriaBuilder->addFilter('state', 'processing')->create()
  • D. Specify a preference in di.xml to map SearchCriteriaBuilder to SearchCriteriaInterface

正解: C

 

質問 64
Magento allows you to specify custom values per store for product attributes created in the admin panel.
Which architectural pattern makes it possible?

  • A. Entity Attribute Value
  • B. Extension Attribute
  • C. Dependency Injection
  • D. Store Manager

正解: A

 

質問 65
You are adding an entry to the backend menu. To do so you open a core etc/adminhtml/menu.xml file as a reference. In the file you see the node:

What is the result of specifying resource="Magento_Catalog::catalog"?

  • A. The menu item will only be visible if the class method specified by the resource returns a true value
  • B. The last selected menu item for a user is stored in the DB so the previously visited page can be restored on the next login
  • C. The resource is used to locate the correct translation for the attributes listed in title="..."
  • D. The menu item will only be visible to users who are assigned to a role with access to the matching ACL resource

正解: D

 

質問 66
You have created a module with a custom ACL resource and want to restrict access to resources of your module.
Which three items are restricted based on ACL role permissions? (Choose three.)

  • A. Storefront login
  • B. Adminhtml controllers
  • C. System configuration sections
  • D. CLI Commands
  • E. Webapi resources

正解: B,C,E

 

質問 67
How can a developer turn off all store view options and scope indicators for a single-store installation?

  • A. Remove all websites, stores, and store views.
  • B. Change the application mode to ''production".
  • C. Set the 'Enable Single-Store Mode' configuration setting to "Yes".

正解: C

 

質問 68
A seller would like to offer an electronic version of an album by selling each song individually. Which layout can be used to customize a product page layout for this item?

  • A. catalog_product_view_type_configu rable
  • B. catalog_pfoduct_view_type_downloadable
  • C. catalog_product_vlew_calegory

正解: B

 

質問 69
In a code review of a merchant's site you have discovered that there are multiple observers for the checkout_submit_all_after event. After closer inspection, you notice one of these observers is relying on the others being executed before it is called.
What risk does this pose, and how can it be mitigated?

  • A. There is no risk posed as long as each event observer specifies a correct sortOrder. Nothing needs to be changed.
  • B. Order of listener execution cannot be guaranteed, resulting in a fragile implementation. This code should be re-worked using plugins
  • C. Magento only supports one observer per event. These observers will need to be combined into a single point of customization.
  • D. Event observers are fired in alphabetical order of the observer name. There is no risk here.

正解: B

 

質問 70
You are working on a jewelry store that sells rings. Each ring allows an adjustment in size. The customer specifies finger size in inches and the merchant physically adjusts the stocked ring to the required size.
How is this represented in Magento?

  • A. Using custom options, with rings as simple products
  • B. Using custom options, with rings as bundle products
  • C. Using categories, with each ring size as a separate product
  • D. Using configurable products, with ring size as an attributive value

正解: A

 

質問 71
Which entity in Magento supports scoped attributes?

  • A. Category
  • B. Customer
  • C. Customer Address
  • D. CMS Page

正解: A

 

質問 72
The value of a product attribute in the Adobe Commerce system needs to have a different formal before it is displayed. Which attribute model class is responsible for this?

  • A. Source
  • B. Frontend
  • C. Backend

正解: B

 

質問 73
......

AD0-E711問題集合格確定させる練習には110問があります:https://www.passtest.jp/Adobe/AD0-E711-shiken.html

AD0-E711練習テスト問題解答更新された110問があります:https://drive.google.com/open?id=1whCRbj6hZJ462ecVKah5tLJ2WVPQKpLk