01. A developer is tasked with implementing custom design elements which are not part of the default theme. The developer decides to create a new theme. Which two mandatory files are required to initialize the theme before customizing?
(Choose two.)
a) theme.xml
b) etc/view.xml
c) registration.php
d) composer.json
02. What is the correct XML required to remove a specific block from a layout?
a) <move element="block.name" />
b) <referenceBlock name="block.name" remove="true" />
c) <remove element="block.name" />
d) <referenceBlock name="block.name" action="remove" />
03. How would a developer extend the layout located at Magento_Customer/view/frontend/layout/customer_account.xml in a theme <Custom_Theme>?
a) <Custom_Theme>/Magento_Customer/layout/override/base/customer_account.xml
b) <Custom_Theme>/Magento_Customer/layout/extend/customer_account.xml
c) <Custom_Theme>/Magento_Customer/view/frontend/layout/customer_account.xml
d) <Custom_Theme>/Magento_Customer/layout/customer_account.xml
04. Which HTML attribute is used to reference Knockout JS on an HTML element?
a) data-bind
b) data-invoke
c) data-mage
d) mage-init
05. During the development a Frontend developer wants to use translatable text "Add to Quote" in the javascript code. Which two are the proper ways to achieve it?
(Choose two.)
a) trans('Add to Quote');
b) $.mage.__('Add to Quote');
c) define (['jquery', 'mage/translate'], function ($, $translate) {
...
$translate('Add to Quote');
...
});
d) __('Add to Quote');
06. In which directory should a developer create a new custom theme?
a) lib/frontend/Vendor/Custom/Theme
b) app/design/frontend/Vendor/Theme
c) vendor/magento/theme-frontend/
d) pub/static/frontend/Vendor/Theme/
07. A developer is tasked with changing the title text of the quote summary section in the checkout page and decides to change the text in view/frontend/web/template/summary.html inside Magento_Checkout module. What is the preferred way to take this action?
a) Create and edit a new file named summary.html in the custom theme under Magento_Checkout/web/template/summary.html
b) Create and edit a new file named summary.html in the custom theme under Magento_Checkout/templates/summary.html
c) Create and edit a new file named summary.html in the custom theme under Magento_Checkout/template/summary.html
d) Create and edit a new file named summary.html in the custom theme under Magento_Checkout/web/templates/summary.html
08. Which three are correct scopes for mixins available in Adobe Commerce?
(Choose three.)
a) view/frontend
b) view/base
c) view/backend
d) view/adminhtml
e) view/global
09. An Adobe Commerce developer has been asked to create a custom knockout template file named custom-component.html.
Ex: <div class="some-component">
<p data-bind="text: someText"></p>
</div>
Where should the developer place the custom-component.html file in a custom module?
a) Custom_Module/view/frontend/web/js/template
b) Custom_Module/view/frontend/template
c) Custom_Module/view/frontend/templates
d) Custom_Module/view/frontend/web/template
10. What function is the Theme Design Rule meant for?
a) Specify an alternative theme for particular categories
b) Schedule a time in which the theme will be active
c) Specify an alternative theme for particular user-agents
d) Specify an alternative theme for specific Customer Groups