You need to add a new column to the sales_shipment and the sales_shipment_grid tables. Other than utilizing the default addColumn methods, what way is automatic?

You need to add a new column to the sales_shipment and the sales_shipment_grid tables. Other than utilizing the default addColumn methods, what way is automatic?A . Utilize the SalesSetup class’ addAttribute method.B . On the default EavSetup class, utilize the addColumn method.C . On the ModuleDataSetupInterface, call $setup->getSales()->addColumn().D . Ensure...

February 18, 2022 No Comments READ MORE +

What is the required class definition for the event observer?

You have configured an event observer to watch the checkout_submit_all_after event using this XML: What is the required class definition for the event observer? A . Option AB . Option BC . Option CD . Option DView AnswerAnswer: B

February 17, 2022 No Comments READ MORE +

What order operation is available in the My Account section in the storefront?

What order operation is available in the My Account section in the storefront?A . Edit orderB . RefundC . ReorderD . InvoiceView AnswerAnswer: C

February 17, 2022 No Comments READ MORE +

How do you pass an array [‘one’, ‘two] as a parameter to you block using the layout XML arguments directive?

How do you pass an array [‘one’, ‘two] as a parameter to you block using the layout XML arguments directive? A . Option AB . Option BC . Option CD . Option DView AnswerAnswer: A

February 17, 2022 No Comments READ MORE +

How do you resolve the issue, keeping maintainability in mind?

A custom module is performing an optimized custom query for quote items. The class applies the query customizations on the select object of a quote item collection instance. You are tasked to resolve an issue where the query sometimes does not deliver the expected results. You have debugged the problem...

February 16, 2022 No Comments READ MORE +

Which two tasks are supported by Magento CLI? (Choose two.)

Which two tasks are supported by Magento CLI? (Choose two.)A . Customer password resetB . Clearing cacheC . Codebase deployment from developer machine to staging serverD . Administrator account creationView AnswerAnswer: B,D

February 16, 2022 No Comments READ MORE +

How do you select a list of records from the database where the record ids are in the $ids list?

Assume that $collection is a new instance of a class that extends MagentoFrameworkModelResourceModelDbCollectionAbstractCollection, 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? A . Option AB . Option BC . Option CD...

February 16, 2022 No Comments READ MORE +

Which three actions do you specify in a module’s Data Patch to add a customer notes attribute?

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 . $cache->clean([‘eav’, ‘db_ddl’]);B . $customerSetup->addAttribute(‘customer’, ‘notes’, $options);C . $customerSetup->getConnection()->addColumn(‘customer_entity’, ‘notes’, $columnSpecs);D . $notesAttribute->setData(‘used_in_forms’,...

February 16, 2022 No Comments READ MORE +