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

Magento M70-301 - Magento Front End Developer Certification Exam

Page: 2 / 4
Total 107 questions

The underscore prefix (“_”) in variable names in Magento template files marks these variables as __________?

A.

“protected”

B.

“public”

C.

“private”

D.

declared in the template file

Which of these block types can be used to define “breadcrumbs” on a page?

A.

page/breadcrumbs

B.

page/ html_bread crumbs

C.

core/ htmlbreadcrumbs

D.

core1 template

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

Given a configured package “tmypackage” and a configured theme “mytheme”, which THREE of the following templates would be part of the design fallback? (Choose THREE.)

A.

mypackage/default/template/my/template.phtml

B.

base/mytheme/template/my/template.phtml

C.

default/default/template/my/template.phtml

D.

base/default/template/my/template.phtml

E.

default/mytheme/template/my/template.phtml

F.

mypackage/mytheme/template/my/template.phtml

If you open an HTML document with the following code sample in the browser, what will you see in the text of the two Alerts in the browser?

A.

"1" and "1"

B.

"2" and "2"

C.

"1" and "Undefined"

D.

"2" and "false"

E.

"false" and "false"

F.

"Undefined" and "Undefined"

You have added some HTML to a custom template located at “template/mytemplates/custom.phtml”. Which code snippet is the correct way to create a block for custom.phtml in the layout XML?

A.

B.

template=“template/mytemplates/ custom.phtml”/>

C.

template=“template/mytemplates/ custom.phtml”/>

D.

What is the difference between “display: none” and “visibility: hidden”?

A.

The “display: none” rule removes the element from the DOM. The “visibility: hidden” rule leaves the element in the DOM.

B.

The “display: none” rule leaves the element in the DOM. The “visibility: hidden” rule removes the element from the DOM.

C.

The “display: none” rule removes the space used by the element from the page. The “visibility: hidden” rule reserves space on the page for the element.

D.

The “display: none” rule reserves space on the page for the element. The “visibility: hidden” rule removes the space used by the element from the page.

Which element in layout XML specifies a method to be called on a referenced or newly defined block?

A.

B.

C.

D.

E.

What is System -> Design used for?

A.

Configuring the fallback system of a store view

B.

Overriding the fallback system of a store view for a limited period of time

C.

Activating the fallback system of a store view

D.

Overriding the fallback system of a subpart (Layout, Templates, ...) of a store view

E.

Configuring basic Package and Theme settings of your Magento instance

Given the following XML, which statement is true?

A.

You have to modify page/html/left.phtml to display the block.

B.

You have to add my-files/my-block.phtml to display the block.

C.

The block renders in the left structural block.

D.

The block won't be shown until you put getChildHtml(‘ left’) ?> into my-block.phtml.