Month End Sale 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: save70

Note! Following AD0-E103 Exam is Retired now. Please select the alternative replacement for your Exam Certification.

Verified By IT Certified Experts

CertsTopics.com Certified Safe Files

Up-To-Date Exam Study Material

99.5% High Success Pass Rate

100% Accurate Answers

Instant Downloads

Exam Questions And Answers PDF

Try Demo Before You Buy

Certification Exams with Helpful Questions And Answers

Adobe Experience Manager Developer Questions and Answers

Question 1

A developer is creating a custom component that shows a list of pages. For each page, the following items must be shown:

* Title of the page

* Description of the page

* A button with fixed text “Read more” that must be translatable

All of the above fields must be wrapped in a

tag.

The logic for obtaining the list of pages must be reusable for future components.

Which snippet should the developer use to meet these requirements?

Options:

A.

Option A

B.

Option B

C.

Option C

D.

Option D

Buy Now
Question 2

A developer needs to implement a header component for a website. The component has the following requirements:

- The component should be configured once on the page highest in the hierarchy.

- The header component on pages lower in the hierarchy should look the same and show the same data.

- If necessary, the configuration can be overwritten on a child page.

- The component should show a list of links that are configured in the header component.

Which code snippet for returning the list of pages should the developer use?

Options:

A.

"public String[] getHeaderLinks(Page page) {

final Resource pageContent = page.getContentResource();

final ComponentInheritanceValueMap properties = ComponentInheritanceValueMap(pageContent);

return properties.get(HEADER_PAGE_LIST, String[].class);

}"

B.

"public String[] getHeaderLinks(Resource componentResource) {

final ComponentInheritanceValueMap properties = componentResource.adaptTo(ComponentInheritanceValueMap.class);

return properties.getInherited(HEADER_PAGE_LIST, String[].class);

}"

C.

"public String[] getHeaderLinks(Resource componentResource) {

final HierarchyNodeInheritanceValueMap properties = new HierarchyNodeInheritanceValueMap (componentResource);

return properties.getInherited(HEADER_PAGE_LIST, String[].class);

}"

D.

"public String[] getHeaderLinks(Resource componentResource) {

final HierarchyNodeInheritanceVauleMap properties = componentResource.adaptTo(HierarchyNodeInheritanceVauleMap.class);

return properties.getInherited(HEADER_PAGE_LIST, String[].class);

}"

Question 3

There is a config file package.myClass.config.factory-myApp.xml – what is true? (Choose two)

Options:

A.

The word "config" is a sign of factory

B.

The word "factory" is a sign of factory

C.

Should be set package.myClass.config.factory-

D.

Must be set package.myClass.config.factory-