ExamGecko
Home Home / Adobe / AD0-E103

Adobe AD0-E103 Practice Test - Questions Answers, Page 3

Question list
Search
Search

List of questions

Search

Related questions











A developer needs to create an OSGi service to run on an Author instance and send out newsletters at periodic intervals. Intervals should be customized using the Web Console Configuration. Concurrent execution must be prevented.

Which code snippet should a developer use to achieve?

A.
A.
Answers
B.
B.
Answers
C.
C.
Answers
D.
D.
Answers
Suggested answer: B

From which AEM Web Console should a developer access and download full AEM Log Files?

A.
Web Console -> System Information
A.
Web Console -> System Information
Answers
B.
Status -> Log files
B.
Status -> Log files
Answers
C.
OSGI -> Sing Log Service
C.
OSGI -> Sing Log Service
Answers
D.
AEM -> Log files
D.
AEM -> Log files
Answers
Suggested answer: C

Explanation:

Reference: https://helpx.adobe.com/aem-forms/kb/getting-log-files-directly-from-aem.html

A developer needs to create a new component called “Component A”. Component A must show a list of other components that all have a resource type of existing “Component B”. Component A must render this list of tiles for each Component B where the tile rendering is different from the default one. The list of rendered tiles must be reusable by future new components.

How should the developer implement this functionality?

A.
Create a script for tile rendering in Component B and use data-sly-resource attribute with a Sling selector in Component A to render the tile.
A.
Create a script for tile rendering in Component B and use data-sly-resource attribute with a Sling selector in Component A to render the tile.
Answers
B.
Component A overlays Component B and overwrites the base renderer to facilitate the tiles.
B.
Component A overlays Component B and overwrites the base renderer to facilitate the tiles.
Answers
C.
Component A inherits from Component B and overwrites the base renderer to facilitate the tiles.
C.
Component A inherits from Component B and overwrites the base renderer to facilitate the tiles.
Answers
D.
Component A calls the HTL of Component B directly using a data-sly-include attribute.
D.
Component A calls the HTL of Component B directly using a data-sly-include attribute.
Answers
Suggested answer: A

For each CRX node in the hierarchy, which actions can be configured using the user admin interface?

A.
Read, Modify, Create, Delete, Read ACL, Edit ACL, Replicate
A.
Read, Modify, Create, Delete, Read ACL, Edit ACL, Replicate
Answers
B.
Read, Write, Read ACL, Edit ACL, Replicate
B.
Read, Write, Read ACL, Edit ACL, Replicate
Answers
C.
Read, Write, Delete, Edit ACL, Replicate
C.
Read, Write, Delete, Edit ACL, Replicate
Answers
D.
Read, Modify, Create, Delete, Read ACL, Edit ACL
D.
Read, Modify, Create, Delete, Read ACL, Edit ACL
Answers
Suggested answer: A

Explanation:

Reference: https://forums.adobe.com/thread/2323098

An application runs specific license checks against certain DAM assets every day. It should send an email to a configured list if it finds warnings, and mark the asset accordingly. A service component that uses the Apache Sling Scheduler Service is created. DAM assets that must NOT be used anymore are hidden using ACLs and the license check must re-check them.

How should a developer obtain a resource resolver that can read and update the DAM assets?

A.
Set up a cron job with curl calls with the admin user and use request.getResourse().getResourceResolver().
A.
Set up a cron job with curl calls with the admin user and use request.getResourse().getResourceResolver().
Answers
B.
Create a configuration line in PID com.day.cq.security.ACLSetup for the user that you obtain a session for via ResourceResolverFactory.getResourceResolver(...).
B.
Create a configuration line in PID com.day.cq.security.ACLSetup for the user that you obtain a session for via ResourceResolverFactory.getResourceResolver(...).
Answers
C.
Configure the user admin in PID org.apache.sling.serviceusermapping.impl.ServiceUserMapperImpl as user.default and make sure the service user exists and has jcr:read and jcr:write permissions.
C.
Configure the user admin in PID org.apache.sling.serviceusermapping.impl.ServiceUserMapperImpl as user.default and make sure the service user exists and has jcr:read and jcr:write permissions.
Answers
D.
Create a configuration for PID org.apache.sling.serviceusermapping.impl.ServiceUserMapperImpl.amended-damaccess that references a pre-created service user with r/w permissions and use ResourceResolverFactory.getServiceResourceResolver(...).
D.
Create a configuration for PID org.apache.sling.serviceusermapping.impl.ServiceUserMapperImpl.amended-damaccess that references a pre-created service user with r/w permissions and use ResourceResolverFactory.getServiceResourceResolver(...).
Answers
Suggested answer: C

A developer determines that the dispatcher is NOT refreshing the cached page /content/sampleproject/sample.html after it is updated. The dispatcher.any contains the following entries:

Refer to the $DOCROOT directory below:

The dispatcher needs to cache the page and refresh it after it gets updated.

What action should the developer take to meet these requirements?

A.
Remove /statfile or /statfileslevel.
A.
Remove /statfile or /statfileslevel.
Answers
B.
Delete the contents of the DOCROOT directory.
B.
Delete the contents of the DOCROOT directory.
Answers
C.
Change the value of the entry /statfileslevel to “3”.
C.
Change the value of the entry /statfileslevel to “3”.
Answers
D.
Add the entry /0001 { /glob “-.html” /type “allow” } in the /invalidate section.
D.
Add the entry /0001 { /glob “-.html” /type “allow” } in the /invalidate section.
Answers
Suggested answer: D

A developer is creating a custom method. This method must return a String property y from child x. the method must use only Sling APIs.

How should the developer retrieve property y of node x, and node x may or may NOT exist?

A.
A.
Answers
B.
B.
Answers
C.
C.
Answers
D.
D.
Answers
Suggested answer: A

The custom AEM application needs to keep a flat list of all page paths underneath /content/thesite in memory for a real-time integration with high performance requirements. The developer has the following intermediate state of the class:

What action should the developer take to meet these requirements?

A.
A.
Answers
B.
B.
Answers
C.
C.
Answers
D.
D.
Answers
Suggested answer: C

A developer needs to create a component with the following requirements:

The component must be configurable

The component should be editable, NOT removable

An author should be unable to add the component to a page through design mode Which mode structure should the developer use to meet these requirements?

A.
A.
Answers
B.
B.
Answers
C.
C.
Answers
D.
D.
Answers
Suggested answer: C

A developer is creating templates and/or components using CRXDE Lite. The developer needs to check the files into source control.

Which tool should the developer use to achieve this goal?

A.
vlt command
A.
vlt command
Answers
B.
Content Explorer
B.
Content Explorer
Answers
C.
http://localhost:4502/crx/checkout
C.
http://localhost:4502/crx/checkout
Answers
D.
mvn command
D.
mvn command
Answers
Suggested answer: A

Explanation:

Reference: https://docs.adobe.com/content/help/en/experience-manager-64/developing/devtools/ht-vlttool.html

Total 92 questions
Go to page: of 10