A developer needs to configure two style options (style-a and style-b) for a text component so authors can choose between different pre-defined styles for their content. What is the correct way to define the cq:editConfig node?
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?
A developer is tasked with displaying the results from an external API call using Server Side Rendering in Adobe Experience Manager.
Which actions would the developer take to complete this task?
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 developer needs to customize the handling of assets in a complex workflow model where different paths process assets based on their metadata and trigger specific external services.
Which approach is a best practice for implementing this solution?
What is the role of the "Retry Delay" setting in an AEM replication agent's configuration?
A developer is creating a set of SPA components, half of which do not require a custom component exporter. The developer needs to override the default exporter for the remaining components.
How can the developer meet this goal?
A developer has created a new Sling Model called Flarp. The developer wants to create a unit test for this Sling Model.
The current unit test looks like this:
@ExtendWith(AemContextExtension.class)
class FlarpImplTest {
private final AemContext ctx = new AemContext();
@BeforeEach
public void setUp() throws Exception {
ctx.addModelsForClasses(FlarpImpl.class);
}
@Test
public void testGetName() {
final String expected = "<
ctx.currentResource("/content/bar");
Flarp bar = ctx.request().adaptTo(Flarp.class);
String actual = bar.getName();
assertEquals(expected, actual);
}
}
What needs to be changed for the unit test to successfully test the getName() method of the Flarp Sling Model?
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 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 developer created a component with the following fields:

What is the correct HTL code and resultant valid URL path generated?
A developer needs to use the mode in Template Editor which allows template authors to define grid settings for different devices.
Which mode should the developer use?
An Adobe Experience Manager architect is asked to configure run mode for their UAT environment.
Which configuration will work for the environment?
What is the correct way to implement the OSGi service class for this interface?
public interface SimpleService {
String getMessage();
}
Options:
A developer is creating a new component to be included in an SPA. They created a Sling Model and React component but are experiencing issues getting them to work together.
Which change is needed to make sure these two components work together?