Halloween Special Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: xmas50

Adobe AD0-E137 - Adobe Experience Manager Sites Developer Expert

Page: 1 / 2
Total 50 questions

A developer needs to define vanity URLs in the dispatcher configuration file.

Under which property would this be defined?

A.

/vanity_url

B.

vanityUrls

C.

/vanityUrls

D.

/vanity_urls

A developer is creating a dialog for a component, which has a checkbox field. After saving the component configuration, the developer noticed that the checkbox value is stored as a String type in JCR.

What should be done to store the checkbox value as a Boolean type in JCR?

A.

Implement JCR Event Listener to change field type afterwards

B.

Add TypeHint field to the dialog

C.

Use Switch instead of Checkbox

A website hosted on AEM as a Cloud Service features site page content search as part of their user experience. The search internally uses JCR Queries for content search based on tags. The content has been indexed adequately.

Which approach is recommended to make the index available across all the environments?

A.

Customize out-of-the-box index and deploy with Maven configurations and CI/CD Pipelines

B.

Create Index Package from Package Manager and replicate over other environments

C.

Create fully custom index and deploy with Maven configurations and CI/CD Pipelines

While configuring SSO with SAML 2.0 compatible IDP on AEM, a developer notices an infinite loop between the IDP and AEM when trying to log in to AEM using SSO.

Which dispatcher-specific configuration is required to prevent this scenario?

A.

Config File: filters.any

Config: /0100 { /type "allow" /method "POST" /url "*/saml_login" }

B.

Config File: allowed_clients.any

Config: /0100 { /type "allow" /method "PUT" /url "*/samllogin" }

C.

Config File: vhosts.any

Config: /0100 { /type "allow" /method "POST" /url "*/samllogin" }

How would a developer create a new Adobe Experience Manager project version 2.0 for 6.5 using the Adobe Experience Manager Maven Archetype with package com.mysite?

A.

mvn -B org.apache.maven.plugins:maven-archetype-plugin:3.2.1:generate \

-D archetypeGroupld=com.mysite \

-D archetypeArtifactld=aem-project-archetype \

-D archetypeVersion=6.5 \

-D appTitle="My Site" \

-D appld="com.adobe.aem" \

-D version="latest" \

-D aemVersion="2.0"

B.

mvn -B org.apache.maven.plugins:maven-archetype-plugin:3.2.1:generate \

-D archetypeGroupld=com.adobe.aem \

-D archetypeArtifactld=aem-project-archetype \

-D archetypeVersion=50 \

-D appTitle="My Site" \

-D appld="mysite" \

-D groupld="com.mysite" \

-D version="2.0" \

-D aemVersion="6.5"

C.

mvn -B org.apache.maven.plugins:maven-archetype-plugin:3.2.1:generate \

-D archetypeGroupld=com.adobe.aem \

-D archetypeArtifactld=aem-project-archetype \

-D archetypeVersion=${jabebrrl_nmqjiwqo} \

-D appTitle="My Site" \

-D appld="siteld" \

-D groupld="com.mysite" \

-D version="2.0" \

-D aemVersion="latest"

A developer is adding a reference script to a third-party analytics tool. The script needs to be editable since it is being modified on a schedule outside of the team’s development cycle.

How should the developer complete this task?

A.

Add a new component with the script in the HTL.

B.

Add the script to the page policy on the template.

C.

Add a Generic Analytics Snippet.

Which tool is commonly used to manage front-end dependencies and automate tasks like bundling, minification, and transpilation in an AEM project?

A.

Webpack

B.

Apache Sling

C.

Maven

D.

AEM Sites Console

A customer needs to create a user and due to security reasons, that user can only have access to /content/foo and none of the child nodes.

How should the Adobe Experience Manager Developer implement permission restrictions on the /content/foo node to meet this requirement?

A.

rep:glob = ""

B.

rep:globs = "**"

C.

rep:glob = "child"

An Adobe Experience Manager architect is asked to configure run mode for their UAT environment.

Which configuration will work for the environment?

A.

/apps//osgiconfig/config.publish.uat/.cfg.json in ui.config project

B.

/apps//osgiconfig/config.uat.author/.cfg.json in ui.apps project

C.

/apps//osgiconfig/config.author.author/.json in ui.apps project

A developer created a component with the following fields:

What is the correct HTL code and resultant valid URL path generated?

A.

HTL code:

{properties.label}

Page Path:

/content/testsite/en/page1.html/product/test1

B.

HTL code:

{properties.label}

Page Path:

/content/testsite/en/page1/product/test1.html

C.

HTL code:

{properties.label}

Page Path:

/product/test1.html/content/testsite/en/page1