| Exam Code/Number: | AD0-E103Join the discussion |
| Exam Name: | Adobe Experience Manager Developer |
| Certification: | Adobe |
| Question Number: | 95 |
| Publish Date: | Sep 06, 2026 |
|
Rating
100%
|
|
A custom AEM application is using the PageManager API.
What should a developer add to make the application compile and run correctly in AEM?
A developer has a component foobar that consists of the files listed below:
script-a.js
script-b.js
foobar.html
What is the output when this component is rendered?

Refer to the following four Client Library Folders.
A developer uses the following:

Which maven plugin is required to install a content package on a local AEM environment using maven?
A developer is working on the following Sling Model that is being used in a component.
@Model(adaptables = SlingHttpServletRequest.class, defaultInjectionStrategy = DefaultInjectionStrategy.OPTIONAL) public class SampleModel {
@Inject
private Page currentPage;
private boolead matchingTitle;
@PostConstruct
private void init(){
matchingTitle = title.equals(currentPage.getName());
}
public boolean isMatchingTitle(){
return matchingTitle;
}
}
The model must check if the configured value of the jct:title property for the component matches the same name of the current page. If the jcr:title property of the component has NOT been configured, then isMatchingTitle() must return false.
How should the developer inject the title property in this model?