What are the unique advantages of Magento 2 architecture when building a site?
What are the two methods available in the Magento 2 Admin (in
the Content section) to change the design of a site?
How can you change the layout of catalog pages using Magento
2 Admin functionality?
How is product data constructed in Magento 2 (product
attributes, inventory, price, images, etc.)?
• Product attributes are pulled from either the store view or the default (0) store if nothing is specified.
• Inventory is specified on a global level.
• Tier pricing is associated with a website, but flat product pricing can be changed on a store view basis.
• Images are associated with a store.
• This information is pulled out of the database and is rendered on
the frontend.
When does product inventory change (decrease) during
the ordering process? How can an administrator control the
inventory change?
• When an order is submitted, the inventory for that product is
decremented by the quantity ordered. Keep in mind that this does
not reflect the quantity on hand. In accounting terms the quantity
in Magento’s inventory is really the quantity available (to be sold).
• Administrators can change this in product management, in the
quantity field.
What is RMA in Magento 2, and what are the RMA types?
• Return Merchandise Authorization. This allows a store to know
what products are being returned and possibly offer return labels.
• The three RMA types are: Store Credit, Refund, Exchange:
• The customer can request one of these types when they request an RMA from the Account Dashboard (within the completed order)
• From: http://thedigitalpm.com/rma-magento-rma-types/
What are the required attributes for creating a CMS page using
Magento Admin functionality?
• Page title (provides the default value for the meta title tag and the
url key)
What is the process for creating a product, and which catalog
data is used in this process?
How is the price defined for a product, and what methods
are available for changing product price using Magento 2
Admin functionality?
What are main differences in Magento indexing between Magento Community Edition 2.x and Enterprise Edition 2.x?
There are NONE! phew
What marketing and merchandising features are available only in Magento 2 Enterprise Edition?
What payment methods and payment functionality are available only in Magento 2 Enterprise Edition?
What are the features and functions of Magento Cloud? (copied from above)
What are the differences between Elasticsearch and Solr?
What is caching, and why is it important?
When would you recommend sharding a database?
• In very large-scale deployments. This would allow the databases
to be separately tuned, and some can then be used in read-only
mode (like the catalog tables for the frontend).
What is Bluefoot?
• Bluefoot is a CMS package that adds drag & drop capabilities to
the admin editing experience.
• It is also very extensible to add new types of elements.
What functions are included in B2B?
What functions are included in Magento Business Intelligence?
How are cookies used in Magento 2?
Which customer data is saved in cookies, and how is it used in
the storefront using Magento native functionality?
What is Swagger, and how is it used in Magento?
• Swagger is an API framework.
• It provides a standardized way to define and document API access.
• Magento uses it for their REST API (http://devdocs.magento.com/
swagger/)