Practice Free AD0-E137 Exam Online Questions
Which dependency management tool is used for handling front-end dependencies in an AEM project?
- A . Maven
- B . Webpack
- C . Node.js
- D . npm
A large number of requests are bypassing dispatcher cache due to the "marketing_id" query parameter.
Which dispatcher configuration is recommended for improving cache-hit ratio if the application does not use query parameters?
- A . /ignoreUrlParams {
/0001 { /glob "*" /type "allow" }
} - B . /ignoreUrlParams {
/0001 { /glob "*" /type "allow" }
/0002 { /glob "marketing_id" /type "deny" }
} - C . /ignoreUrlParams {
/0001 { /glob "*" /type "deny" }
/0002 { /glob "marketing_id" /type "allow" }
} - D . /ignoreUrlParams {
/0001 { /glob "marketing_id" /type "ignore" }
}
What are key considerations when configuring multi-tenancy in AEM? (Choose three)
- A . Separate content hierarchies for each tenant under /content
- B . Unified dispatcher configurations for all tenants
- C . Unique permissions for tenant-specific users and groups
- D . Configuring individual replication agents per tenant
- E . Using a shared content hierarchy for all tenants
What are the benefits of using Maven archetypes for AEM projects? (Choose two)
- A . Simplifies front-end dependency management
- B . Automates dispatcher cache invalidation
- C . Enables easy configuration of workflows
- D . Predefined project structure for consistency
- E . Supports multi-module project setups
What is the primary benefit of maintaining separate front-end and back-end dependency management?
- A . Simplifies the dispatcher configuration process
- B . Improves scalability and modularity in the project
- C . Enables faster replication of content
- D . Reduces the need for custom workflows
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?
- A . select [jcr:path] from [nt:base] where isdescendantnode(‘/content/dam/folder1’) AND [jcr:content/cq:lastModified] >= CAST("2024-01-01T00:00:00.000Z")
- B . select [jcr:path] from [dam:Asset] where isdescendantnode(‘/content/dam/folder1’) AND [jcr:content/cq:lastModified] >= CAST("2024-01-01T00:00:00.000Z")
- C . select [jcr:path] from [cq:image] where isdescendantnode(‘/content/dam/folder1’) AND jcr:content.[cq:lastModified] >= CAST("2024-01-01T00:00:00.000Z")
Which step is required when configuring workflows for a custom deployment process?
- A . Use JCR queries to validate workflow nodes
- B . Configure workflow launcher to automate workflow execution
- C . Disable all default workflows before creating a new one
- D . Write API calls directly into the workflow logic
A team wants to block access to all .json requests while allowing /libs/granite resources.
What dispatcher rules should they implement?
- A . Allow all requests and block none
- B . Block .json requests using /rule { /glob "*.json" /type "deny" } and allow /libs/granite explicitly
- C . Deny /libs/* requests and enable .json caching
- D . Only allow /etc and /apps paths in dispatcher rules
A developer wants to setup multiple AEM environments using AEM as a Cloud Service.
What kind of environment types can be created?
- A . Production + Development, Stage & Rapid Development
- B . Production + Pre Production, Stage & Rapid Production
- C . Production + Stage, Development & Rapid Development
- D . Production + Development, Development & Rapid Development
A developer needs to integrate a third-party weather API into an AEM component to display weather data dynamically.
What is the best approach?
- A . Use an OSGi service to manage API connections and fetch data
- B . Write API logic directly into the HTL template
- C . Configure dispatcher caching for the API responses
- D . Use the Content Fragment Model to integrate the API