01. A developer is finding problems with replications. Which two steps should be used to determine the nature of these problems?
(Choose two.)
a) Check the AEM request logs
b) Make sure the Queue is not paused
c) Make sure the Replication agent is enabled
d) Check the Author Permission
02. In an AEM as a Cloud Service environment, a client needs a feature to be able to explicitly clear a dispatcher cache of required resources. Which approach is preferred to create this feature?
a) Use Replication API along with Dispatcher flush replication agent
b) Create a servlet, which will make an HTTP request to the dispatcher
c) Enable the explicit cache invalidation feature in cloud manager
d) Use a manual cache flush script via CRXDE
03. A developer is encountering an error related to misconfigured properties in their AEMaaCS environments. After navigating to the Developer Console via Cloud Manager, which two steps could the developer take to begin debugging their environments?
(Choose two.)
a) Check the status of the OSGI Services
b) Check the status of the Components
c) Check the status of the Bundles
d) Check the status of the Configurations
04. Review the following HTL code snippet:
<div data-sly-use.testComponent="${'com.adobe.core.models.TestComponent' @ testParam='testValue'}"></div>
Which approach correctly read the value of testParam in Sling model?
a) @RequestAttribute(name = "testParam")
b) @Inject @Prop(“testParam")
c) @Inject(name = "testParam")
d) @ModelAttribute(name = "testParam")
05. How would a developer define global project properties in Maven project structure?
a) <properties> section of the "all" content package pom.xml
b) <properties> section of the parent pom.xml
c) <properties> section of the “core” package pom.xml
d) <properties> section of the dispatcher package pom.xml
06. The replication queue is blocked when a developer is trying to replicate namespace information from the author instance to the publish instance. What are two possible reasons for this problem?
(Choose two.)
a) The administrator does not have read and write privileges at the path where the content is installed.
b) The administrator does not have jcr:namespaceManagement privilege at the repository level.
c) The replication user does not have jcr:namespaceManagement privilege at the repository level.
d) The replication user does not have read and write privileges at the path where the content is installed.
07. What should an Adobe Experience Manager developer use to reindex the Oak Repository?
a) JCR Index Wizard
b) AEM Repository Index
c) Sling Index Configurator
d) Oak Index Definition Generator
08. A developer is creating and managing custom Oak Indexes in AEM. Which two best practices should be considered during this process?
(Choose two.)
a) Limit the number of indexed properties to only those necessary for efficient query execution
b) Avoid the use of custom Oak Indexes as built-in AEM index structures are sufficient for most use cases
c) Use asynchronous indexing to minimize the impact on system performance during index updates
d) Configure proper access controls to ensure that only authorized users can modify or manage custom indexes
09. Which AEM topology is best suited for a highly scalable, cloud-native architecture with continuous delivery of updates and seamless auto-scaling capabilities?
a) AEM Hybrid Cloud
b) AEM Managed Services
c) AEM On-Premise
d) AEMaaCS
10. We can delete files from the CQ cache by using an HTTP request. Which is the correct HTTP request syntax?
a) POST /dispatcher/invalidate.cache HTTP/1.1
CQ-Action: Deactivate
CQ-Handle: path-pattern
Content-Length: 0
b) GET /dispatcher/invalidate.cache HTTP/1.1
CQ-Action: Replicate
CQ-Handle: path-pattern
Content-Length: 0
c) POST /dispatcher/invalidate.cache HTTP/1.1
CQ-Action: Activate
CQ-Handle: path-pattern
Content-Length: 0
d) PUT /dispatcher/invalidate.cache HTTP/1.1
CQ-Action: Delete
CQ-Handle: path-pattern
Content-Length: 0