You are writing a customization for the customer module. You need to make sure the configuration files from your module are loaded after the customer module’s configuration. Where should the dependency be declared? A. composer.json B. etc/module.xml C. etc/config.xml D.…

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…

You have added a new attribute origin of the type varchar to the product entity. Which two calls will filter a product collection with origin set to "California"? (Choose two.) A. $collection->addFieldToFilter(‘origin’, "California"); B. $collection->addAttributeToSelect(‘origin’, "California"); C. $collection->joinAttribute(‘origin’, ‘catalog_product/origin’, ‘origin’,…