1. Question: Which of the following is the minimum memory requirement for running a Magento site?

    A
    at least 128MB

    B
    at least 256MB

    C
    at least 512MB

    D
    ver 512MB

    Note: Not available
    1. Report
  2. Question: How can the checkout process be skipped for downloadable products in Magento?

    A
    The checkout step cannot be skipped in Magento.

    B
    Downloadable products automatically do not require checkout.

    C
    There is an option in the admin panel to skip the checkout step for downloadable products.

    D
    Magento does not support downloadable products.

    Note: Not available
    1. Report
  3. Question: Which of the following conditions must be met in order to successfully run a Magento install script?

    A
    The install script should be placed in MODULE/sql/RESOURCES_KEY/SCRIPT_NAME.

    B
    The install script should be named using the convention, mysql4-install-MODULE_VERSION.php

    C
    The module version in config.xml and in the install script file name must be same.

    D
    All

    Note: Not available
    1. Report
  4. Question: When migrating a Magento store to a new server, after moving the files and the database, where must the database access details be configured for the new server?

    A
    Database table ‘core_config_data’

    B
    config.inc file at magento root

    C
    app/etc/config.xml

    D
    app/etc/local.xml

    Note: Not available
    1. Report
  5. Question: What is the best way to create global variables which can be used everywhere in Magento?

    A
    Creating a empty module and adding a system.xml file to it

    B
    Using the Magento Admin panel: System > Custom Variables > create a new custom variable

    C
    Via a Magento Session $myValue = 'Hello World'; Mage::getSingleton('core/session')->setMyValue($myValue);

    D
    $myValue = 'Hello World'; Mage::getModel('core/variable')->addMyValue($myValue);

    Note: Not available
    1. Report
  6. Question: The browser is ignoring the file referred on the code below: <link src="http://siteurl.com/theme/skin/frontend/default/mytheme/css/colors.css.php" rel="stylesheet" type="text/css"> Assume that this is a PHP file that is used as a stylesheet in a Magento extension. Which of the following choices will make the browser apply the stylesheet?

    A
    There is no solution; a PHP file cannot be used as a stylesheet.

    B
    Use the "href" attribute instead of "src" to specify the file's location, as in: <link href="http://siteurl.com/theme/skin/frontend/default/mytheme/css/colors.css.php" rel="stylesheet" type="text/css">

    C
    Call a static CSS file instead of using a PHP file as a stylesheet.

    D
    Send a valid Content-Type HTTP header, as in: header("content-type: text/css");

    Note: Not available
    1. Report
  7. Question: What is the recommended way to override/extend Magento core functionality?

    A
    Directly edit the core files of Magento with proper commenting.

    B
    Mage::registerOverride(‘CoreClassName’,’CoreFunctionName’,’MyClassName’,’MyFunctionname’);

    C
    Copy the original Magento core file to the app/code/local folder and customize that file.

    D
    Create extended versions of core files in their own folder with extension information. app/code/core/Mage/Cms/Model/Page.php app/code/core/Mage/Cms/Model/Page.1.php App/code/core/Mage/Cms/Model/Page.2.php

    Note: Not available
    1. Report
  8. Question: An observer in Magento is defined as a:

    A
    Method

    B
    Class

    C
    Event

    D
    None

    Note: Not available
    1. Report
  9. Question: What is the difference between "Flush Magento Cache" and "Flush Cache Storage" in the Magento Cache Management System?

    A
    "Flush Magento Cache" removes "/tmp/" folder's cache only, while "Flush Cache Storage" clears everything.

    B
    "Flush Cache Storage" removes "/tmp/" folder's cache only, while "Flush Magento Cache" clears everything.

    C
    Flush Magento Cache" and "Flush Cache Storage" are equivalent; they work the same way.

    D
    None

    Note: Not available
    1. Report
  10. Question: Which of the following will get a list of products belonging to a specific category within a view file?

    A
    $productCollection = Mage::getResourceModel('catalog/product_collection') ->addCategoryFilter($category);

    B
    {{block type="catalog/product_list" category_id="7" template="catalog/product/list.phtml"}}

    C
    $productCollection = Mage::getResourceModel('catalog/product_collection') ->addFilter($category);

    D
    $productCollection = Mage::getModel('catalog/product_collection') ->addCategoryFilter($category);

    Note: Not available
    1. Report
Copyright © 2025. Powered by Intellect Software Ltd