Exam2pass
0 items Sign In or Register
  • Home
  • IT Exams
  • Guarantee
  • FAQs
  • Reviews
  • Contact Us
  • Demo
Exam2pass > Adobe > Adobe Certifications > AD0-E134 > AD0-E134 Online Practice Questions and Answers

AD0-E134 Online Practice Questions and Answers

Questions 4

A developer needs to create a dynamic participant step where the participant is selected automatically at run time.

The developer decides to develop an OSGi service, which needs to implement the com.day.cq.workflow.exec.ParticipantStepChooser interface.

Which method should the developer implement from the com.day.cq.workflow.exec.ParticipantStepChooser interface?

A. String getParticipant(Workltem workltem, WorkflowSession workflowSession, MetaDataMap metaDataMap)

B. void getParticipant(Workltem workltem, WorkflowSession workflowSession, MetaDataMap metaDataMap)

C. String getDynamicParticipant(Workltem workltem, WorkflowSession workflowSession, MetaDataMap metaDataMap)

D. void getDynamicParticipant(Workltem workltem, WorkflowSession workflowSession, MetaDataMap metaDataMap)

Buy Now

Correct Answer: A

https://medium.com/@toimrank/aem-dynamic-participant-step-1cd58e15f28

Questions 5

An AEM server is overloaded with too many concurrently running workflows. The developer decides to reduce the number of concurrent workflows. What should be configured to reduce the number of concurrent workflows?

A. The number of threads in Scheduler

B. The number of threads in Apache Felix Jetty Http Service

C. Launchers for each workflow

D. Maximum Parallel Jobs in OSGI console

Buy Now

Correct Answer: D

Explanation: Maximum Parallel Jobs is a configuration property that controls how many workflows can run concurrently on an AEM instance. Reducing this value can help to avoid overloading the server with too many workflows. Reference: Workflow Engine Configuration section

Questions 6

The OSGi configuration is added to a runmode specific configuration "config.author.staging" in AEM as a Cloud Service. The application fails to read the configuration.

What is a possible cause of this issue?

A. The custom OSGi configuration runmode used (i.e., "config.author.staging") is not supported in AEM as a Cloud service.

B. OSGi configuration runmodes cannot be installed automatically on AEM as a Cloud Service. We need to install them as a package using the Package manager.

C. AEM as a Cloud service does not support OSGi configuration runmodes.

D. Only specific OSGi configuration runmodes like "config.author" or "config.publish" are supported in AEM as a Cloud service.

Buy Now

Correct Answer: C

The correct answer is C: AEM as a Cloud service does not support OSGi configuration runmodes.

In AEM as a Cloud service, only the default runmodes (i.e., "config.author" and "config.publish") are supported for OSGi configuration. Runmodes like "config.author.staging" are not supported and cannot be added as a Cloud service.

This is because AEM as a Cloud service has specific limitations and configurations that are imposed by the cloud environment itself. The OSGi configuration runmodes are one such limitation, which can only use the default author and publish runmodes.

Questions 7

Which configuration must be applied to enable re-fetching of cached items based on Cache Headers sent by AEM?

A. /autolnvalidate true

B. /autolnvalidate "1"

C. /enableTTLtrue

D. /enableTTL "1"

Buy Now

Correct Answer: D

Explanation: The /enableTTL "1" configuration must be applied to enable re-fetching of cached items based on Cache Headers sent by AEM. This configuration enables the Time To Live (TTL) feature of dispatcher, which allows dispatcher to check the Cache-Control and Expires headers of the cached files and re-fetch them from AEM if they are expired. References:https://experienceleague.adobe.com/docs/experience-manager- dispatcher/using/configuring/page-invalidation.html?lang=en#time-based-cache- invalidation

Questions 8

Which attribute must be present in all filter rules in AEM dispatcher configuration?

A. /type

B. /selectors

C. /url

D. /glob

Buy Now

Correct Answer: A

https://experienceleague.adobe.com/docs/experience-manager-dispatcher/using/configuring/dispatcher-configuration.html?lang=en#configuring-access-to-content-filter

Questions 9

The following anchor tag is not resolving:

{item.name}

Upon further inspection the developer notices that the link has no .html appended to the end of the URL

What could be a potential fix for the issue?

A. Option A

B. Option B

C. Option C

D. Option D

Buy Now

Correct Answer: B

Explanation: Option B is a potential fix for the issue. Option B uses the data-sly-attribute block statement to add the href attribute to the anchor tag. The data-sly-attribute statement uses an expression to append ".html" to the item.path value.

This way, the link will have the correct extension and will resolve to the corresponding page.

References:https://experienceleague.adobe.com/docs/experience-manager-htl/using- htl/htl-block-statements.html?lang=en#data-sly-attribute

Questions 10

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

Buy Now

Correct Answer: A

Explanation: 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

Questions 11

Which property under /cache on dispatcher.any file identifies the directory where cached files are stored?

A. /invalidate

B. /statfile

C. /docroot

D. /cacheroot

Buy Now

Correct Answer: D

Explanation: 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

Questions 12

An AEM application wants to set up multi-tenancy using Adobe-recommended best practices and bind multiple configurations to it. Which of the following options is recommended?

A. import org.apache.felix.scr.annotations.Component; @Component(label = "My configuration", metatype = true, factory= true)

B. import org.osgi.service.component.annotations.Component; @Component(service = ConfigurationFactory.class)

C. import org.osgi.service.metatype.annotations.AttributeDefinition; import org.osgi.service.metatype.annotations.ObjectClassDefinition; @ObjectClassDefinition(name = "My configuration")

D. @Component(service = ConfigurationFactory.class) @Designate(ocd = ConfigurationFactorylmpl.Config.class, factory=true)

Buy Now

Correct Answer: D

Explanation: The @Component(service = ConfigurationFactory.class) @Designate(ocd = ConfigurationFactorylmpl.Config.class,factory=true) option is recommended for creating a multi-tenancy configuration and binding multiple configurations to it. This option uses the OSGi R6 annotations to define a component that provides a service of type ConfigurationFactory and designates a class that contains the configuration properties. The factory=true attribute indicates that multiple configurations can be created for this component. References:https://experienceleague.adobe.com/docs/experience-manager- 65/deploying/configuring/osgi-configuration-settings.html?lang=en#creating-factory- configurations

Questions 13

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

Buy Now

Correct Answer: AB

Explanation: 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/experience-manager-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#sdk-versions

Exam Code: AD0-E134
Exam Name: Adobe Experience Manager Developer
Last Update: Jun 09, 2025
Questions: 72

PDF (Q&A)

$45.99
ADD TO CART

VCE

$49.99
ADD TO CART

PDF + VCE

$59.99
ADD TO CART

Exam2Pass----The Most Reliable Exam Preparation Assistance

There are tens of thousands of certification exam dumps provided on the internet. And how to choose the most reliable one among them is the first problem one certification candidate should face. Exam2Pass provide a shot cut to pass the exam and get the certification. If you need help on any questions or any Exam2Pass exam PDF and VCE simulators, customer support team is ready to help at any time when required.

Home | Guarantee & Policy |  Privacy & Policy |  Terms & Conditions |  How to buy |  FAQs |  About Us |  Contact Us |  Demo |  Reviews

2025 Copyright @ exam2pass.com All trademarks are the property of their respective vendors. We are not associated with any of them.