A developer is investigating a problem with the shopping cart. Some of the cart records in the database are being checked.
Which table should the developer check?
Asales_quote
Bsales_cart
Cquote
Which Adobe Commerce table stores all cron data?
Aschedule
Bcronjob
Ccron.schedule
Which command should be used to refresh the cache using the command line?
Amagento cache:clean <type>
Bmagento cache:refresh <type>
Cmagento cache:delete <type>
In a new release of a module, a developer decides to rename a table that was defined in the earlier versions.
Which action, if any, allows the developer to prevent data loss?
ADefine onCreate=“migrateDataFromAnotherTable(old_table_name)” attribute in the table tag.
BDeclarative schema supports ‘RENAME TABLE’, so the data will be migrated to the new table automatically.
CDefine the table and columns mapping in the db_schema_whitelist.json.
Question 6
Catalog
0
Question 7
Architecture
Question 8
Cloud CLI Tool
Question 9
Catalog
Question 10
EAV/Database
Question 11
Cloud Setup/Config
Question 12
Layout/UI
Question 13
Architecture
Question 14
Layout/UI
Question 15
Cloud CLI Tool
Question 16
Layout/UI
Question 17
Layout/UI
Question 18
EAV/Database
Question 19
Cloud Setup/Config
Question 20
Working with Admin
Question 21
Catalog
Question 22
Working with Admin
Question 23
EAV/Database
Question 24
Catalog
Question 25
Architecture
Ask AstroTutor
0
Ask AstroTutor
0
Ask AstroTutor
0
Ask AstroTutor
0
Ask AstroTutor
0
Ask AstroTutor
0
Ask AstroTutor
0
Ad
Want a break from the ads?
Become a Supporter and enjoy a completely ad-free experience, plus unlock Learn Mode, Exam Mode, AstroTutor AI, and more.
Ask AstroTutor
0
Ask AstroTutor
0
Ask AstroTutor
0
Ask AstroTutor
0
Ask AstroTutor
0
Ask AstroTutor
0
Ask AstroTutor
0
Ask AstroTutor
0
Ask AstroTutor
0
Ask AstroTutor
0
Ask AstroTutor
0
Ask AstroTutor
0
Which attribute option restricts Catalog EAV attributes to only certain product types?
Ashow.in
Bapply.to
Callowed_in
A developer found a bug inside a private method of a third party module class.
How can the developer override the method?
ACreate a custom class with corrected logic, and define the class as preference in the preferences.xml.
BCreate a custom class with the corrected logic, and define the class as a preference for original one in the di.xml.
CCreate a plugin, implement correct logic in the 'after' method, and then define the plugin in the di.xml.
Which command can be used to display a full list of enabled and disabled Magento modules?
Abin/magento module:all
Bbin/magento module:status
Cbin/magento module:show
Which action, if any, should be taken to enable filtering by attribute in the category's layered navigation?
ASet the category's “Anchor” display setting to “yes”.
BSelect “With layered navigation” from the category's display mode.
CFiltering by the attribute is enabled for every category automatically.
Which two attribute input types can be used for a date? (Choose two.)
ATimezone
BSchedule
CDate and Time
DDate
On the Adobe Commerce Cloud Project Web Interface, what will be performed when clicking on the "Delete" button of an integration environment?
AThe environment is marked as "inactive", the git branch is still present but the database is deleted.
BThe environment is completely deleted, including git branch and database.
CThe environment is marked as "inactive", the git branch and the database are still present.
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?
Aview/{area}/web/css/style.less
Bview/{area}/web/css/source/main.less
Cview/{area}/web/css/source/_module.less
Which file is used to add a custom router class to the list of routers?
Aroutes.xml
Bdi.xml
Cconfig.xml
A client would like to add an image icon in front of the telephone field to the shipping address form on a checkout page.
What is the correct way to modify the UI component to set a custom template file for the field?
A
B
C
Which Cloud CLI for Commerce command can be used to quickly view a specific log file for an Adobe Commerce Cloud project?
Amagento-cloud log
Bmagento-cloud logs:list
Cmagento-cloud logs:show
What is the correct way to inject CMS block in a layout?
A
B
C
A developer needs to initialize the jQuery UI widget for a specific HTML tag.
Which HTML attribute is used for this?
Ax-magento-init
Bdata-mage-init
Cdata-ui
A developer defined a new table in db.schema.xml while creating a new module.
What should be done to allow the removal of columns from the database when deleting them from db_schema.xml?
AThe removable columns should be defined in db_schema_whitelist.json.
BThe columns should have "removable" attribute set to "true" in the db.schema.xml.
CThe removable columns should be defined in db_schema_blacklist.json.
Which property allows multiple cron jobs to share the same configuration?
Aname
Bgroup
Cschedule
How can a custom CMS Page be set as a store home page?
AIn the CMS Page admin grid, select the checkbox for the page under the "Home Page" column.
BIn the CMS Page admin form, set the "Default Home Page" value to "yes".
CIn the store configuration, set a custom CMS Page to be a CMS home page.
Which type of product would assist a seller who would like to offer an electronic version of an album for sale and sell each song individually?
ADownloadable
BSimple
CConfigurable
Which file should a developer use to set the default value when creating configuration fields for admin?
Aetc/adminhtml/config.xml
Betc/config.xml
Cetc/adminhtml/system.xml
Which two methods add sorting to collections inherited from the \Magento\Framework\Model\ResourceModel\Db\Collection\AbstractCollection class? (Choose two.)
AsetOrder
BsetSorting
CaddSorting
DaddOrder
Which has its own root category?
AWebsites
BStores
CStore Views
How can a developer prioritize a plugin's execution, if possible?
AThe developer can use sortOrder property by specifying a lower value than the target plugin.
BThe developer can use sortOrder property by specifying a higher value than the target plugin.
CThis cannot be achieved as the plugins are always executed by their module's load order in app/etc/config.php file.