Weekend Sale Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: cramtick70

AD0-E137 Adobe Experience Manager Sites Developer Expert Questions and Answers

Questions 4

A customer noticed slower Adobe Experience Manager performance in the last couple of days. The segment store size is almost double the size from the previous week. To reduce the segment store size and maintain overall Adobe Experience Manager health, which Adobe Experience Manager maintenance task should be executed daily?

Options:

A.

Audit Log Purge

B.

Lucene Binaries Cleanup

C.

Version Purge

Buy Now
Questions 5

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?

Options:

A.

Implement JCR Event Listener to change field type afterwards

B.

Add TypeHint field to the dialog

C.

Use Switch instead of Checkbox

Buy Now
Questions 6

A customer has the requirement to use SAML authentication on AEM using their SAML 2.0 compatible IDP.

Example:

    AEM: www.wknd.com/content/siteB/index.html

    IDP: https://www.idpB.com

How should an AEM Developer configure their SAML Authentication Handler?

Options:

A.

com.adobe.granite.auth.saml.SamlAuthenticationHandler.userIntermediatePath : /content/siteB

com.adobe.granite.auth.saml.SamlAuthenticationHandler.assertionConsumerServiceURL : https://www.idpB.com

B.

com.adobe.granite.auth.saml.SamlAuthenticationHandler.path : /content/siteB

com.adobe.granite.auth.saml.SamlAuthenticationHandler.idpUrl : https://www.idpB.com

C.

com.adobe.granite.auth.saml.SamlAuthenticationHandler.userIntermediatePath : /content/siteB

com.adobe.granite.auth.saml.SamlAuthenticationHandler.serviceProviderEntityId : https://www.idpB.com

Buy Now
Questions 7

An Adobe Experience Manager team is using an additional DEV environment in Adobe Experience Manager as a Cloud Service as their UAT environment. An AEM architect is asked to configure a dedicated URL endpoint to be used as a preview service for the same environment.

Which configuration will accomplish this task?

Options:

A.

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

B.

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

C.

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

Buy Now
Questions 8

An AEM engineer is asked to write a single file for the following items:

    Register a custom JCR Namespace

    Create a folder named Tutorials within the DAM assets

    Create a service user with predefined access control rules and permissions

    Create the administrator's group and add the service user as a member

Which feature should the engineer use?

Options:

A.

Ensure Authorizable

B.

Repoinit

C.

OnDeploy Scripts

Buy Now
Questions 9

An Adobe Experience Manager project requires to deny all XML and JSON requests under the /path2 and /path3 context paths.

Which configuration will work?

Options:

A.

/0001 {/type "deny" extension '(XML|JSON)' /path '(/path2|JSON/*)'}

B.

/0001 {/type "deny" extension [XML|JSON]'/path[/path2|/path3/*]'}

C.

/0001 {/type "deny" extension "[XML|JSON]' /path'[/path2|/path3/*]"}

Buy Now
Questions 10

A university wants to roll out content updates to all the schools affiliated with it. The individual schools have configured their respective homepages with a space allocated to display updated university information. The rest of the homepage is dedicated to school-specific information.

What is the recommended approach to roll out university updates on all the schools' homepages?

Options:

A.

Roll out of Experience Fragment

B.

Mark the "Partial" option on the roll out screen

C.

Restore inheritance for certain components on the school homepage

D.

Implement custom logic for page roll out action

Buy Now
Questions 11

Given the following error:

[ERROR] org.acme:mybundle:0.0.1-SNAPSHOT: Bundle org.acme:mybundle:0.0.1-SNAPSHOT is exporting package org.acme.foo without a version.

What are the appropriate troubleshooting steps for addressing this error?

Options:

A.

Check if all the dependency declarations made in the OSGi bundle are satisfied by the capabilities declarations in other bundles included in the Maven project.

B.

Check if the custom OSGi bundles don’t have the Export-Package declarations that override AEM as a Cloud Service’s bundle dependencies.

C.

Check if the OSGi bundles specify a version with an Export-Package declaration and a version range with an Import-Package declaration.

D.

Check if all the OSGi bundles have their Import-Package declarations satisfied by the Export-Package declaration of other included bundles in the Maven project.

Buy Now
Questions 12

The customer has a requirement to fetch images from a custom folder (folder1) which were modified on/after 1 January 2024.

How would the Adobe Experience Manager Developer write the query to get the requested data?

Options:

A.

select [jcr:path] from [nt:base]

where isdescendantnode('/content/dam/folder1')

AND [jcr:content/cq:lastModified] >= CAST("2024-01-01T00:00:00.000Z" AS DATE)

B.

select [jcr:path] from [dam:Asset]

where isdescendantnode('/content/dam/folder1')

AND [jcr:content/metadata/cq:lastModified] >= CAST("2024-01-01T00:00:00.000Z" AS DATE)

C.

select [jcr:path] from [cq:image]

where isdescendantnode('/content/dam/folder1')

AND jcr:content.[cq:lastModified] >= CAST("2024-01-01T00:00:00.000Z" AS DATE)

Buy Now
Questions 13

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?

Options:

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"

Buy Now
Questions 14

Which action is typically performed by a replication agent in AEM?

Options:

A.

Transferring content and digital assets from the author instance to the publish instance.

B.

Synchronizing user permissions between the author and publish instances.

C.

Transferring Core components for use in AEM Sites.

Buy Now
Questions 15

A developer needs to upgrade an existing custom component based on Core Components Version 1 (v1) to Core Components Version 2 (v2).

How should the developer upgrade to this version?

Options:

A.

Modify the sling:resourceType property on the custom component to point to the V2 Component

B.

The Custom Component will be automatically upgraded to the V2 Core Component on AEM Restart

C.

Modify the sling:resourceSuperType property on the custom component to point to the V2 Component

Buy Now
Exam Code: AD0-E137
Exam Name: Adobe Experience Manager Sites Developer Expert
Last Update: Oct 5, 2025
Questions: 50
AD0-E137 pdf

AD0-E137 PDF

$25.5  $84.99
AD0-E137 Engine

AD0-E137 Testing Engine

$30  $99.99
AD0-E137 PDF + Engine

AD0-E137 PDF + Testing Engine

$40.5  $134.99