Summer Special Limited Time 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: exc65

How can a template be included in a CMS block?

A.

{{block template=¡”path/to/template .phtm1’}}

B.

{{block type=“core/template” template=”path/to/template.phtml”}}

C.

{{block template=“path/to/template.phtml”}}

D.

{{block id=“path/to/template.phtml”}}

E.

{{block type=“core/template” method=“setTemplate” param=“path/to/template.phtml1” } }

You have a “custom/default” design package. You need to edit this file:

/app/design/frontend/base/defauIt/template/page/html/header.Phtml

Which method is a bad practice because the file will be overwritten during Magento upgrades?

A.

Edit the “base/default” file directly.

B.

Create a new module in “base/default” called “custom” and copy the file there for editing.

C.

Create a new package called “custom/custom” and copy the file there for editing.

D.

Copy the file to “custom/default” for editing.

What is the function of the attribute output= “to Html” when applied to a tag?

A.

Renders a block without any other explicit calls

B.

Specifies the sequence of blocks on the page

C.

Marks a block as a structural block

D.

Marks a block as a content block

You want to stop all events on someElement. Which two methods from prototype.js will do this? (Choose TWO.)

A.

$ ("someElement").stopEvent()

B.

$ ("someElement") .stopObserving()

C.

Event.stop("someElement")

D.

$("someElement").stop ()

E.

Event.stopEvent("someElement")

F.

Event.stopObserving("someElement")

In System->Configuration ‘Design’ you can configure individual theme names for ________ . (Choose FIVE)

A.

templates

B.

images only

C.

layout XML

D.

all skin files

E.

translations

F.

default theme

G.

admin panel

You want to create a new “screendesign” package based on the “default” package’s “default” theme.

Which ONE of the following steps do you have to take?

A.

Copy app/design/base to app/design/screendesign

B.

Create an empty folder app/design/frontend/screendesign and copy app/design/frontend/default/default into it

C.

Create skin/frontend/screendesign, then copy the CSS and images folders and their files from /skin/frontend/default/default/ to skin/frontend/screendesign/default

D.

Inside app/design/frontend and skin/frontend, copy the folder “default” to the folder “custom”; then rename custom/default to custom/screendesign in both places

E.

Create app/design/frontend/default/screendesign

You want to change the number of columns per row in the list of upsell products on all product pages. Where do you set the parameter that specifies the number of columns?

A.

Admin panel

B.

XML layout

C.

Template

D.

Database

Which of the following is the correct code for assigning a custom template file using layout XML?

A.

template=“ folder/custom_template.phtml”/>

B.

template=“ folder/custom_template.phtml”/>

C.

template=“ folder/custom_template.phtml”/>

D.

template=“ folder/custom_template.phtml”/>

E.

template=“ folder/custom_template.phtml”/>

Your project, which uses prototype.js, contains the JavaScript class Photoviewer (see EXAMPLE, below). Which one of the following code samples will create a class called AdvancedPhotoViewer that extends Photoviewe r?

EXAMPLE:

var PhotoViewer = Class.create();

A.

var AdvancedPhotoViewer = new PhotoViewer()

B.

AdvancedPhotoViewer.prototype = Object.extend (new PhotoViewer ()

C.

var AdvancedPhotoViewer = Class.extend (PhotoViewer)

D.

AdvancedPhotoViewer = PhotoViewer.extend ()

Which is the correct type attribute for a structural block?

A.

core/block

B.

core/html_wrapper

C.

core/text

D.

core/text_list