M70-301 Prüfungsfragen

M70-301 Prüfungsfragen Magento Front End Developer Certification Exam www.it-pruefungen.ch

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

A.
B.
C.
D.
E.

Answer: B

QUESTION NO: 2
You want to create a wrapper block that uses an HTML tag name which is set by the action setHtmlTagName. The wrapper block should render all its child blocks within the HTML tag. Which block type should you use to create the wrapper block?

A. page/html
B. page/wrapper
C. page/div wrapper
D. page/html_wrapper

Answer: D

QUESTION NO: 3
You want to figure out which phtml-files are rendering in the front end. Which developer tool helps you do that?

A. Profiler
B. Exception.log
C. Block Class Names
D. Template Path Hints
E. System.log

Answer: D

Prüfungsvorbereitung auf M70-301 Studienmaterialien deutsch Magento Front End Developer Certification Exam https://www.it-pruefungen.ch/M70-301.htm

QUESTION NO: 4
Which is the correct order of the three types of translations by priority (1 = highest, 3 = lowest)?

A. 1. Database (Inline) translation
2. Module translation
3. Theme translation
B. 1. Database (Inline) translation
2. Theme translation
3. Module translation
C. 1. Module translation
2. Database (In line) translation
3. Theme translation
D. 1. Theme translation
2. Database (In line) translation
3. Module translation

Answer: B

QUESTION NO: 5
Which piece of code creates a url that links to the store pages in transactional email templates?

A. {{store url= “” }}
B. {{ store_page url= ” ” } }
C. {{ store_url= ” ” } }
D. {{ store_name url= ” ” } }

Answer: A

IT-Prüfungen M70-301 Magento Front End Developer Certification Exam www.it-pruefungen.ch

QUESTION NO: 6
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 ()

Answer: B