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

Free and Premium Adobe AD0-E103 Dumps Questions Answers

Page: 1 / 3
Total 94 questions

Adobe Experience Manager Developer Questions and Answers

Question 1

A developer needs an existing workflow to run only when pages are created under a certain folder.

What should the developer create to achieve this?

Options:

A.

A Launcher with the field path pointing to the folder and condition field and have the value jcr:content/jcr:primaryType==cq:Page

B.

A Launcher with the field condition that has the value jcr:content/page

C.

A Launcher with the field exclude that has the value jcr:nodeType==cq:Page

D.

A Launcher with the field path pointing to the folder and nodetype field have the value cq:Page

Buy Now
Question 2

One content package of a custom application contains the following content paths.

The server also contains the content path /apps/myproj/configuration that must NOT be touched when installing the package.

Which two filter definitions should a developer use to always update only the contained paths upon installation in the server? (Choose two.)

Options:

A.

Option A

B.

Option B

C.

Option C

D.

Option D

E.

Option E

Question 3

A developer needs to ensure that the path /content//segments exists on all environments with the correct initial content that the developer provides in a package. Content that exists in that path should NOT be affected.

Which import mode should the developer use in the filter definition?

Options:

A.

update

B.

merge

C.

replace

D.

optional

Question 4

Which environment variable in the AEM start script should a developer modify to enable remote debugging?

Options:

A.

CQ_RUNMODE

B.

CQ_JVM_OPTS

C.

CQ_PORT

D.

CQ_HOST

E.
Question 5

A developer is creating a new OSGi bundle com.custom.package.b to expose new services.

com.custom.package.a is already installed and active in the system and has the following package definition:

The system console shows the following package availability:

Bundle com.custom.package.b to be installed has the following package definition:

What will happen when the developer uploads the bundle com.custom.package.b into the system?

Options:

A.

The bundle will install but fail the activation due to unsatisfied dependencies com.sample.package.b and com.sample.package.c.

B.

The bundle will install but fail the activation due to unsatisfied dependency com.sample.package.c.

C.

The bundle will install and activate successfully.

D.

The bundle will install but fail the activation due to unsatisfied dependency com.sample.package.b.

Question 6

A service component periodically retrieves content from an external REST interface and saves the information in JCR. The REST endpoint is configured via an OSGi service property. There is one URL for production (runmode prod) and another URL for all other environments.

How should a developer configure the OSGi service?

Options:

A.

Underneath /apps//settings, create the sub folders global and prod and node with name .conf each and configure the properties via node properties.

B.

Underneath /config//settings, create the sub folders config.default and config.prod and a file with the name .config each and list the properties as key value pairs in there.

C.

Underneath /apps/, create the sub folders config and config.prod and a file with the name .config each and list the properties as key value pairs in there.

D.

Underneath /config//settings, create the sub folders config and config.prod and a file with the name .config each and list the properties as key value pairs in there.

Question 7

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 8

In OSGi bundle Activator.java is registered through a service DevelopInfo.java

DeveloperInfo.java

Activator.java

Maven install generates an error during deployment. Refer to the error information below:

Which action should the developer take to resolve the build error?

Options:

A.

@Service annotation is missing in DeveloperInfo.java.

B.

Interface DeveloperInfo does NOT have any method.

C.

Activator class is NOT implementing DeveloperInfo interface.

D.

The required Maven repository for OSGi is missing.

Question 9

After a recent code deployment, an AEM site is experiencing longer than usual query execution time. The deployment package contained some new Lucene index definitions. A developer needs to identify the long running queries and confirm that the new index definitions are getting applied correctly.

Which action should the developer take to investigate this problem?

Options:

A.

Goto Tools > Operations > Diagnosis > Log Messages. Configure DEBUG log level on com.day.cq.search to monitor search queries.

B.

Goto Tools > Operations > Diagnosis > Query Performance > Slow Queries. Select a Query and Click on Explain

C.

Goto Tools > Operations > Diagnosis > Index Manager. Select the new Indexes and run a consistency check.

D.

Goto Tools > Operations > Diagnosis > Download Thread Dumps. Analyze the Thread Dumps to identify long running requests.

Question 10

A developer has a component foobar that consists of the files listed below:

script-a.js

script-b.js

foobar.html

What is the output when this component is rendered?

Options:

A.

Option A

B.

Option B

C.

Option C

D.

Option D

Question 11

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

Question 12

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-

Question 13

How should a developer enable remote debugging of an AEM server without modifying the AEM start script?

Options:

A.

Enable the remote debugging service through the AEM Cloud Services menu.

B.

Rename the quickstart jar file to include the additional debug settings.

C.

Enable the remote debugging service through the AEM Web Console.

D.

Include an additional JVM parameter when starting AEM with java -jar.

Page: 1 / 3
Total 94 questions