Winter Special Flat 65% Limited Time Discount offer - Ends in 0d 00h 00m 00s - Coupon code: netdisc

Adobe AD0-E134 Adobe Experience Manager Developer Exam Exam Practice Test

Page: 1 / 7
Total 72 questions

Adobe Experience Manager Developer Exam Questions and Answers

Testing Engine

  • Product Type: Testing Engine
$42  $119.99

PDF Study Guide

  • Product Type: PDF Study Guide
$36.75  $104.99
Question 1

Which type of Cloud Manager tests are enabled for all Cloud Manager production pipelines and cannot be skipped?

Options:

A.

Code Quality Testing

B.

Experience Audit Testing

C.

Ul Testing

D.

Functional Testing

Question 2

A customer who is running an AEM application on premise reports that the application is slowing down over time and even crashes The issues seem to start occurring after a new production deployment. The AEM developer knows that the described symptoms could be caused by a memory leak.

Which two steps should be taken after confirming the problem is related to a memory issue? (Choose two.)

Options:

A.

Open the error log and look for messages with 'OutOfMemoryError'

B.

Create a heap dump for analysis

C.

Analyze the request log and make sure the number of requests are below the expected threshold

D.

Increase the cache ratio of the application

E.

Create a thread dump for analysis

Question 3

An AEM as a Cloud Service implementation customer wants content to be replicated as soon as the On Time and Off Times are reached.

What must the developer configure?

Options:

A.

Enable Auto Replicate via On Off Trigger Configuration

B.

Enable On Time or Off Time via Page Properties

C.

Configure the Publish content tree via Workflow Models

Question 4

A developer needs to create an OSGI service that is able to read a list of spoken languages from the configuration of the service. Theconfiguration file tanguageServicelmplefgjson' already exisls:

Which snippet should the developer use lo read the OSGi configurations?

A)

B)

Options:

A.

Option A

B.

Option B

Question 5

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.)

Options:

A.

aemVersion=cloud

B.

sdkVersion=2022.5.7575.20220530T152407Z-220401

C.

sdkVersion=latest

D.

aemVersion=latest

E.

aemVersion=2022.5.7575.20220530T152407Z-220401

Question 6

A new component called Page Headline needs to be implemented. The only difference to the title component delivered by Adobe's WCM core components is that the text needs to be taken from the current page title instead of jcr.title.

How should a developer implement this request?

A)

1. Create custom component

2. Implement Sling Modal as follows

B)

1. Create proxy component from the core title component

2. Implement sling Model as follows

C)

1. Create proxy component from the core title component

2. Implement Sling Model as follows

Options:

A.

Option A

B.

Option B

C.

Option C

Question 7

A snippet throws an exception at runtime:

@Model(adaptables = {Resource.class}) public class MyCustomModel {

(SSIingObject

private Resource resource;

What should the developer add to fix it?

Options:

A.

defaultlnjectionStrategy = DefaultlnjectionStrategy property to @Model Class annotation

B.

(©Optional annotation to page field

C.

throws Exception at the end of the init method declaration

D.

SlingHttpServletRequest.class to adaptables property of ©Model Class annotation

Question 8

An AEM Developer receives requirements for Sling Models in a human-readable yaml format. A custom application needs to be built. The dependency is as shown:

Options:

A.

1. Create OSGI models to export as yaml

2. Configure mime type in Apache Sling MIME Type Service

B.

1. Create OSGI models to export as yaml

2. Configure mime type in Apache Sling Servlet/Script Resolver and Error Handler

C.

1. Create Sling models to export as yaml

2. Configure mime type in Apache Sling MIME Type Service

D.

1. Create Sling models to export as yaml

2. Configure mime type in Apache Sling Referrer Filter

Question 9

Which configuration/section should be used to resolve the domain name by dispatcher?

Options:

A.

Configuration in vhosts file

B.

Configuration in filters.any

C.

Configuration in httpd.conf

D.

Configuration in DNS

Question 10

An AEM application has a Header and Footer authored on every page.

The customer asks for the following:

1. A centralized Header and Footer

2. The ability to create a variation for both the Header and Footer

3. Change the Header and Footer for specific time periods

4. The ability to restore a previous version for both the Header and Footer

What should the developer use to meet the requirements?

Options:

A.

Custom component

B.

Content fragment

C.

Static template

D.

Experience fragment

Question 11

An AEM application requires LDAP Service integration to synchronize users/groups. Which two OSGi configuration are required for LDAP integration in AEM? (Select Two.)

Options:

A.

Apache Jackrabbit Oak AuthorizableActionProvider

B.

Apache Jackrabbit Oak Solr server provider

C.

Apache Jackrabbit Oak CUG Configuration

D.

Apache Jackrabbit Oak External Login Module

E.

Apache Jackrabbit Oak Default Sync Handler

Question 12

A project requires sharing information between SPA components. What is the least complex approach to achieve that objective?

Options:

A.

Utilize model props to drill down and access or set the state on desired components.

B.

Customize and extend the container component to leverage the object hierarchy.

C.

Implement a state library in order to share component states.

D.

Centralize the logic and broadcast to the necessary components.

Question 13

Refer to the exhibit.

The current page has three children.

What is the final rendered html output for the code snippet?

A)

B)

C)

Options:

A.

Option A

B.

Option B

C.

Option C

Question 14

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?

Options:

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

Question 15

A developer needs to create sling models for two fields name and occupations. The dialog has two fields, name - a single value field, and occupations - a multi value field.

The following code is included in sling models inherited from interface com.adobe.aem.guides.wknd.core.models.Byline

Which method should be used to used to represent this model in HTL?

A)

B)

C)

D)

Options:

A.

Option A

B.

Option B

C.

Option C

D.

Option D

Question 16

Which environment-specific configuration is used in AEM as a Cloud Service to store private API keys?

Options:

A.

$[env:ENV_VAR_NAME]

B.

$[env:SECRET_VAR_NAME]

C.

$[secret:SECRET_VAR_NAME]

D.

$[secret:ENV_VAR_NAME]

Question 17

The following anchor tag is not resolving:

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)

B)

C)

D)

Options:

A.

Option A

B.

Option B

C.

Option C

D.

Option D

Question 18

A developer is working on a project based on core components. The client requests that text pasted inside the Text component should be stripped of all styling and formatting.

The developer needs to override RTE plugin implementation and change the default paste (CTRL+V) behavior.

Which paste option should the developer add to achieve this?

Options:

A.

defaultPasteMode=text

B.

defaultPasteMode=plaintext

C.

pasleMode=text

D.

pasteMode-plaintext

Question 19

What is the correct order of resolution of OSGi configuration at Runtime?

Options:

A.

1. Modifying a configuration in /apps will take immediate effect

2. Modifying a configuration in the Web console will take immediate effect as it takes precedence at runtime.

3. Modifying a configuration in /libs will take immediate effect, unless it is masked by a configuration in /apps.

B.

1. Modifying a configuration in the Web console will take immediate effect as it takes precedence at runtime.

2. Modifying a configuration in /apps will take immediate effect

3. Modifying a configuration in /libs will take immediate effect, unless it is masked by a configuration in /apps.

C.

1. Modifying a configuration in /libs will lake immediate effect, unless it is masked by a configuration in /apps O 2. Modifying a configuration in /apps will take immediate effect

3. Modifying a configuration in the Web console will take immediate effect as it takes precedence at runtime.

D.

1. Modifying a configuration in the Web console will take immediate effect as it takes precedence at runtime.

2. Modifying a configuration in /libs will take immediate effect, unless it is masked by a configuration in /apps.

3. Modifying a configuration in /apps will lake immediate effect.

Question 20

A customer is having trouble with some search queries and provides the following information:

* The logs show the following warning occurs many time: WARN* Traversed 1000 nodes with filter Filter (query=select…)

* The client has more than 100,000 stored in their AEM instance

* The client uses a custom page property to help search for pages of a given type

What should the AEM Developer do to help resolve the client’s issue?

Options:

A.

Create a custom oak index for the custom page property.

B.

Set the reindex flag to true for node ‘’oakindex/cqPageLicen’

C.

Use the index Manager to validate the ‘cqPageLicence index is enabled.

Question 21

An application development team needs to create a multi-channel application that uses AEM as a headless CMS Which feature should be used to maintain structured data for this application?

Options:

A.

Static template

B.

Content fragment

C.

Experience fragment

D.

Custom component

Page: 1 / 7
Total 72 questions