Practice Free AD0-E137 Exam Online Questions
A developer is discussing the situations in which AEM Headless would be more advantageous than the use of traditional AEM (non-headless) implementations.
In which two situations would it be more advantageous? (Choose two.)
- A . For projects where a separate team works on a mobile application and wants to reuse its content created in AEM
- B . For projects where the front-end and back-end development teams work independently
- C . For projects with minimal reliance on APIs and a predominant focus on server-generated HTML content
- D . For projects where the primary goal is to leverage AEM’s built-in templating system for seamless content presentation
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 two Adobe Experience Manager maintenance tasks should be executed Weekly? (Choose two.)
- A . Datastore Garbage Collection
- B . Clientlib Dumps
- C . Version Purge
- D . Online Revision Cleanup
A client wants to ensure that only specific components are available to content authors when using an editable template in AEM. Additionally, they require that certain fields within a content fragment model adhere to strict validation rules for data integrity.
Which two steps would the developer take to meet both requirements? (Choose two.)
- A . Use editable templates to directly configure field validation rules.
- B . Configure field validation within the content fragment model.
- C . Create and assign a new workflow to enforce component usage.
- D . Enable dynamic templates for flexible content creation.
- E . Define policies in the editable template to control allowed components.
In Adobe Experience Manager (AEM) 6.5, when configuring a replication agent, which statements about the "Agent User Id" and its impact on replication is true?
- A . Configuring the "Agent User Id" with a specific user account is optional for Default Agents, but mandatory for Reverse Replication agents to ensure that content is correctly transported from Publish to Author environments.
- B . The "Agent User Id" if left empty, the system user account (admin by default) will be used, and this user must have read access on the Author environment and create/write access on the Publish environment.
- C . The "Agent User Id" is only relevant for Dispatcher Flush agents and is not applicable for Default Agents or Reverse Replication agents.
- D . The "Agent User Id" field is mandatory and must always be filled out with a specific user account that has read access for replication to function, regardless of the environment (Author or Publish).
You are tasked with optimizing query performance for a client’s AEM repository.
Which steps should you take?
- A . Create an Oak index for frequently queried properties under /oak:index
- B . Write custom JCR queries to bypass indexing
- C . Optimize dispatcher rules to reduce query frequency
- D . Use the Workflow Console to monitor query performance
A developer is using the Oak query engine.
Which query language is recommended?
- A . JCR-SQL
- B . SQL
- C . XPath
What is the first step in creating an AEM project using Maven archetype?
- A . Configure the dispatcher rules for the project
- B . Run the Maven archetype generation command with the desired parameters
- C . Define editable templates for the project
- D . Configure replication agents for deployment
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"
A customer added a custom property "foo:bar" to all assets.
Once the property is added, the customer needs to run the following query:
select * from [dam:Asset] where isdescendantnode(‘/content’) and [foo:bar] ="Hello"
How would the customer update the indexes to make sure the query is not a traversal query?
- A . Add "foo:bar" as a child node of oak:index/damAssetLucene/indexRules/dam:Asset/properties.
- B . Add "foo:bar" as a child node of oak:index/lucene/indexRules/dam:Asset/properties.
- C . Add "Hello" as a child node of oak:index/ntBaseLucene/indexRules/dam:Asset/properties.
An AEM developer is troubleshooting an issue where a component’s client-side JavaScript functionality is not working as expected. Upon investigation, the developer noticed that the client-side JavaScript file is properly included in the page, but the functionality is not working.
What could be the issue?
- A . The JavaScript file is not properly minified or obfuscated.
- B . The JavaScript file contains errors that are preventing its execution.
- C . The JavaScript file is not being loaded due to incorrect permissions.
- D . The JavaScript file is missing required import statements for external libraries.