Adobe AD0-E134 Online Practice
Questions and Exam Preparation
AD0-E134 Exam Details
Exam Code
:AD0-E134
Exam Name
:Adobe Experience Manager Developer Exam
Certification
:Adobe Certifications
Vendor
:Adobe
Total Questions
:72 Q&As
Last Updated
:Jul 12, 2026
Adobe AD0-E134 Online Questions &
Answers
Question 41:
Which tool should a developer use to look up Adobe Identity Management System (IMS) users by email and return their IMS IDs?
A. Developer Console B. User Mapping Tool C. IMS Lookup Tool D. Cloud Acceleration
C. IMS Lookup Tool The IMS Lookup Tool is a tool that allows looking up Adobe Identity Management System (IMS) users by email and returning their IMS IDs. The IMS Lookup Tool is available in the Cloud Manager UI under the Tools menu. The IMS Lookup Tool can be used to find the IMS IDs of users who need to be added to Cloud Manager programs or environments. References: https://experienceleague.adobe.com/docs/experience- manager-cloud-service/implementing/using-cloud-manager/ims-lookup- tool.html?lang=enhttps://experienceleague.adobe.com/docs/experience-manager-cloud- service/ implementing/using-cloud-manager/adding-users-to-programs-and- environments.html?lang=en
Question 42:
A developer needs to create an OSGi service that is able to read a list of spoken languages from the configuration of the service. The configuration file languageServiceImpl.cfg.json already exists:
{
"languages": [
"French",
"German",
"Italian"
]
}
Which snippet should the developer use to read the OSGi configurations?
A. @Component( service = LanguageService.class ) @Designate(ocd = LanguageServiceImpl.Config.class) public class LanguageServiceImpl implements LanguageService { @ObjectClassDefinition( name = "Sample - Language Service", description = "OSGi Service providing information about languages" ) @interface Config { @Property( label = "Sample Languages" ) lan B. @Component( service = { LanguageService.class } ) @Designate(ocd = LanguageServiceImpl.Config.class) public class LanguageServiceImpl implements LanguageService { @ObjectClassDefinition( name = "Sample - Language Service", description = "OSGi Service providing information about languages" ) @interface Config { @AttributeDefinition( name = "Sample Languages", description = "List of spoken languages" ) String[] languages() default { "English", "Japanese" }; } private String[] languages; @Activate protected void activate(Config config) { this.languages = config.languages(); } }
B. @Component( service = { LanguageService.class } ) @Designate(ocd = LanguageServiceImpl.Config.class) public class LanguageServiceImpl implements LanguageService { @ObjectClassDefinition( name = "Sample - Language Service", description = "OSGi Service providing information about languages" ) @interface Config { @AttributeDefinition( name = "Sample Languages", description = "List of spoken languages" ) String[] languages() default { "English", "Japanese" }; } private String[] languages; @Activate protected void activate(Config config) { this.languages = config.languages(); } }
Question 43:
A developer has to create a Logger and Writer pair for the company's application logging. Which OSGi configurations should the developer use?
A. Apache Sling Logging Logger Configuration and Apache Sling Logging Configuration B. Apache Sling Request Logger and Apache Sling Logging Writer Configuration C. Apache Sling Logging Logger Configuration and Apache Sling Logging Writer Configuration
C. Apache Sling Logging Logger Configuration and Apache Sling Logging Writer Configuration The Apache Sling Logging Logger Configuration and Apache Sling Logging Writer Configuration are the OSGi configurations that the developer should use to create a Logger and Writer pair for the company's application logging. The Logger Configuration defines the log level and the log file name for a given logger name or category. The Writer Configuration defines the file size, number of files, and file location for a given log file name. References:https:// experienceleague.adobe.com/docs/experience-manager- 65/deploying/configuring/configure-logging.html?lang=en#configuring-log-files
Question 44:
An AEM environment is cloned, and the domain and IPs ate changed. What must be reconfigured for content activation to work?
A. Transport URI in dispatcher configuration B. Transport URI of the flush and replication agents C. User of flush agents D. User of replication agents
B. Transport URI of the flush and replication agents
Question 45:
Which configuration/section should be used to resolve the domain name by dispatcher?
A. Configuration in vhosts file B. Configuration in filters.any C. Configuration in httpd.conf D. Configuration in DNS
D. Configuration in DNS The configuration in DNS (Domain Name System) should be used to resolve the domain name by dispatcher. The DNS resolves the domain names to the IP address of the web server that hosts the dispatcher. The dispatcher then matches the incoming request URL with the cached files or the AEM publish instances. References:https://experienceleague.adobe.com/docs/experience-manager- dispatcher/using/configuring/dispatcher-domains.html?lang=en#client-requests
Question 46:
A developer is on an AEM application that is being used to calculate an employee's salary. The calculation is done in an OSGi service called CalculationService. This service class has a dependency on one other service, called the EmployeeService.
How should the developer make sure that the critical code in the CalculationService has a high unit test coverage?
A. Use a mock framework in the unit test to inject the CalculationService B. Instantiate the EmployeeService in the unit test and pass it to the constructor of the CalculationService C. Use a mock framework in the unit test to inject the EmployeeService D. Use the feature flag in the unit test to disable the calls to the EmployeeService
C. Use a mock framework in the unit test to inject the EmployeeService Explanation Explanation/Reference:A mock framework is a tool that allows creating mock objects that simulate the behavior of real objects in a controlled way. A mock framework can be used in a unit test to inject the EmployeeService dependency into the CalculationService and verify its interactions. This way, the unit test can focus on testing the logic of the CalculationService without relying on the actual implementation of the EmployeeService. References: https://sling.apache.org/documentation/development/ sling-testing- tools.htmlhttps://wcm.io/testing/aem-mock/usage.html
Question 47:
Which Maven plugin checks if all the requirements declarations made in OSGi bundles are satisfied by the capabilities declarations of other bundles included in the Maven project?
A. maven-enforcer-plugin B. femaven-assembly-plugin C. content-package-maven-plugin D. aemanalyser-maven-plugin
D. aemanalyser-maven-plugin The aemanalyser-maven-plugin is a Maven plugin that checks if all the requirements declarations made in OSGi bundles are satisfied by the capabilities declarations of other bundles included in the Maven project. This plugin ensures that the OSGi bundles are consistent and can be resolved at runtime. The plugin also checks for other issues such as API compatibility, package versioning, and bundle start order. References: https://experienceleague.adobe.com/docs/experiencemanager-cloud- service/implementing/developing/aem-project-content-package- structure.html?lang=en#build-analyzer-maven-pluginhttps://github.com/adobe/aemanalyser- maven-plugin
Question 48:
A developer needs to create a project based on AEM Project Archetype with a specific AEM as a Cloud Service SDK version on the local environment. Which two properties must be defined when creating this project? (Choose two.)
A. aemVersion=cloud B. sdkVersion=2022.5.7575.20220530T152407Z-220401 C. sdkVersion=latest D. aemVersion=latest E. aemVersion=2022.5.7575.20220530T152407Z-220401
A. aemVersion=cloud B. sdkVersion=2022.5.7575.20220530T152407Z-220401 The aemVersion property specifies the target AEM version for the project. To create a project based on AEM as a Cloud Service SDK, the value should be set to cloud. The sdkVersion property specifies the AEM as a Cloud Service SDK version to use for local development. To use a specific SDK version, the value should be set to the exact version number, such as 2022.5.7575.20220530T152407Z-220401. References: https://experienceleague.adobe.com/docs/experiencemanager-core- components/using/developing/archetype/using.html?lang=en#propertieshttps://experiencel eague.adobe.com/docs/experience-manager-cloud-service/ implementing/developing/aem- as-a-cloud-service-sdk.html?lang=en#sdkversions
Question 49:
Which property under /cache on dispatcher.any file identifies the directory where cached files are stored?
A. /invalidate B. /statfile C. /docroot D. /cacheroot
D. /cacheroot The /cacheroot property under /cache in the dispatcher.any file identifies the directory where cached files are stored. It is a relative or absolute path to the cache root directory. The dispatcher creates a subdirectory for each virtual host under this directory and stores thecached files there. References: https://experienceleague.adobe.com/docs/experience-manager- dispatcher/using/configuring/dispatcher-configuration.html?lang=en#cache
Question 50:
Which option should be used to synchronize user data across publish servers in a publish farm?
A. Sling Content Distribution B. Vault plugin C. CURL D. Replication Agents
A. Sling Content Distribution Sling Content Distribution is a feature that allows synchronizing user data across publish servers in a publish farm. Sling Content Distribution uses agents to distribute content from one instance to another using a publish-publish topology. Sling Content Distribution can be configured to synchronize user data under /home/users and /home/groups paths, as well as their ACLs. References: https://experienceleague.adobe.com/docs/experience-manager- 65/administering/security/ sync.html?lang=enhttps://experienceleague.adobe.com/docs/exp erience-manager-learn/sites/deploying/sling-content-distribution.html? lang=en
Nowadays, the certification exams become more and more important and required by more and more
enterprises when applying for a job. But how to prepare for the exam effectively? How to prepare
for the exam in a short time with less efforts? How to get a ideal result and how to find the
most reliable resources? Here on Vcedump.com, you will find all the answers.
Vcedump.com provide not only Adobe exam questions,
answers and explanations but also complete assistance on your exam preparation and certification
application. If you are confused on your AD0-E134 exam preparations
and Adobe certification application, do not hesitate to visit our
Vcedump.com to find your solutions here.