How many shipping addresses may be selected for an order during the checkout process?
Answer : B
The module MyCompany_MyModule provides custom admin interface pages.
Access to these pages should only be granted to specific users.
You add the required configuration to the module's acl.xml file, but the setting does not seem to work as expected.
How do you visually check if Magento evaluates your ACL resource as expected?
Answer : C
A merchant gives you the module MyCompany_MyModule to install.
How do you identify which REST endpoints are supported by the module?
Answer : D
What is the relationship between products and categories in Magento?
Answer : A
Assume that $collection is a new instance of a class that extends
Magento\Framework\Model\ResourceModel\Db\Collection\AbstractCollection, and $ids is an array of ids.
How do you select a list of records from the database where the record ids are in the $ids list?
Answer : A
You need to control access to a custom controller action. How do you tell Magento about this new control option?
Answer : A
You are debugging a problem resulting from a recently deployed around plugin. The plugin is intercepting the doSomething method. The aroundDoSomething plugin method is called successfully, but the original doSomething method is no longer being executed as expected.
What is causing this?
Answer : C