ExamGecko
Home Home / Adobe / AD0-E103

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

Question list
Search
Search

List of questions

Search

Related questions











A customer bundle of an application is in state “Installed” after deploying it with Maven.

What should a developer do to change it to state “Active”?

A.
Use the “Update” action for the bundle in the Apache Felix Web Console.
A.
Use the “Update” action for the bundle in the Apache Felix Web Console.
Answers
B.
Use the “Start” action for the bundle in the Apache Felix Web Console.
B.
Use the “Start” action for the bundle in the Apache Felix Web Console.
Answers
C.
Reinstall the content package using the package manager.
C.
Reinstall the content package using the package manager.
Answers
D.
Ensure all OSGi requirements are met and re-deploy using Maven.
D.
Ensure all OSGi requirements are met and re-deploy using Maven.
Answers
Suggested answer: A

How should a developer configure the replication agent to flush the dispatcher cache for a newly activated page?

A.
Set the serialization type property of the default agent to dispatcher flush.
A.
Set the serialization type property of the default agent to dispatcher flush.
Answers
B.
Create a new replication agent and set transport URI to point to the dispatcher.
B.
Create a new replication agent and set transport URI to point to the dispatcher.
Answers
C.
Create a dispatcher flush agent in publish instance.
C.
Create a dispatcher flush agent in publish instance.
Answers
D.
Create a reserve replication agent on the author instance.
D.
Create a reserve replication agent on the author instance.
Answers
Suggested answer: B

Explanation:

Reference: https://helpx.adobe.com/experience-manager/6-3/sites/deploying/using/replication.html#ConfiguringyourReplicationAgents

A developer is working on a dialog for a contact list component. The dialog has the following requirements:

A.
The list of contacts must include one or more entries.
A.
The list of contacts must include one or more entries.
Answers
B.
Contact details must include a full name.
B.
Contact details must include a full name.
Answers
C.
Contact details must include an email address
C.
Contact details must include an email address
Answers
D.
Contact details can optionally include a short bio
D.
Contact details can optionally include a short bio
Answers
E.
Authors need to be able to rearrange the contacts in the listWhich dialog configuration should the developer use to meet all of these requirements?
E.
Authors need to be able to rearrange the contacts in the listWhich dialog configuration should the developer use to meet all of these requirements?
Answers
F.
F.
Answers
G.
G.
Answers
H.
H.
Answers
I.
I.
Answers
Suggested answer: A

Which log file should a developer use to search for exception stack traces?

A.
<aem-install>/crx-quickstart/logs/request.log
A.
<aem-install>/crx-quickstart/logs/request.log
Answers
B.
<aem-install>/crx-quickstart/logs/error.log
B.
<aem-install>/crx-quickstart/logs/error.log
Answers
C.
<aem-install>/crx-quickstart/logs/access.log
C.
<aem-install>/crx-quickstart/logs/access.log
Answers
D.
<aem-install>/crx-quickstart/logs/info.log
D.
<aem-install>/crx-quickstart/logs/info.log
Answers
Suggested answer: B

A developer needs to configure sets of values according to the following parameters:

Varies for different staging environments

Varies for different content paths

Differs between author and publish

Which implementation strategy should the developer use to meet these requirements?

A.
A custom cloud configuration
A.
A custom cloud configuration
Answers
B.
A context aware configuration with buckets using an OSGi configuration
B.
A context aware configuration with buckets using an OSGi configuration
Answers
C.
One OSGi configuration for the set of values with runmodes
C.
One OSGi configuration for the set of values with runmodes
Answers
D.
A JCR property at the content root node of the site with inheritedPageProperties
D.
A JCR property at the content root node of the site with inheritedPageProperties
Answers
Suggested answer: C

A developer needs to upgrade existing components (Proxy Components) based on Core Components Version 1(v1) to Core Components Version 2(v2).

How should the developer upgrade to V2 Core Components?

A.
Modify the sling:resourceSuperType property on the proxy component to point to V2 Component.
A.
Modify the sling:resourceSuperType property on the proxy component to point to V2 Component.
Answers
B.
Modify the sling:resourceSuperType property on the proxy component to point to V2 Component.
B.
Modify the sling:resourceSuperType property on the proxy component to point to V2 Component.
Answers
C.
Create a new Proxy Component and set sling:resourceType property to V2 Core Component.
C.
Create a new Proxy Component and set sling:resourceType property to V2 Core Component.
Answers
D.
Proxy Components will be automatically upgraded to the V2 Core Component on AEM Restart.
D.
Proxy Components will be automatically upgraded to the V2 Core Component on AEM Restart.
Answers
Suggested answer: A

In which maven build phase is the content package assembled?

A.
compile
A.
compile
Answers
B.
deploy
B.
deploy
Answers
C.
package
C.
package
Answers
D.
install
D.
install
Answers
Suggested answer: A

Explanation:

Reference: http://adamcin.net/vltpack-maven-plugin/

The following stack trace is written in the error.log file after installing a custom application package.

What are two different ways that the developer could resolve the OSGi bundle dependency error? (Choose two.)

A.
Install the jar in AEM via the curl command ‘curl -u username:password -F file=@”./com.example.customlib-3.8.jar” -F name=”Dependency” -F force=true -F install=true http://localhost:4502/crx/packmgr/service.jsp --progress-bar oupload.txt’.
A.
Install the jar in AEM via the curl command ‘curl -u username:password -F file=@”./com.example.customlib-3.8.jar” -F name=”Dependency” -F force=true -F install=true http://localhost:4502/crx/packmgr/service.jsp --progress-bar oupload.txt’.
Answers
B.
Go to the Dependency Finder in the System Console to find if another bundle is exporting a similar version of the classes and change the project pom.xml to match the same version.
B.
Go to the Dependency Finder in the System Console to find if another bundle is exporting a similar version of the classes and change the project pom.xml to match the same version.
Answers
C.
Create a folder named “deploy” under @AEM_HOME/crx-quickstart/ and copy com.example.customlib-3.8.jar in there so AEM uploads it automatically.
C.
Create a folder named “deploy” under @AEM_HOME/crx-quickstart/ and copy com.example.customlib-3.8.jar in there so AEM uploads it automatically.
Answers
D.
Go to the project parent pom.xml file and add the dependency with scope “compile” and instruct the bundle plugin to include the dependency in runtime.
D.
Go to the project parent pom.xml file and add the dependency with scope “compile” and instruct the bundle plugin to include the dependency in runtime.
Answers
E.
Upload the file com.example.customlib-3.8.jar into /apps/<project>/libs folder in CRX DE to make it available for the OSGi bundle.
E.
Upload the file com.example.customlib-3.8.jar into /apps/<project>/libs folder in CRX DE to make it available for the OSGi bundle.
Answers
Suggested answer: A, E

A developer needs to change the label “Sites” in the navigation of AEM author to “Websites”.

Which action should the developer take to achieve this?

A.
Modify the node /libs/cq/core/content/nav/sites by updating the icr:title property value.
A.
Modify the node /libs/cq/core/content/nav/sites by updating the icr:title property value.
Answers
B.
Change the code of /libs/granite/ui/components/shell/clientlibs/shell/js/globalnav.js to display the new value.
B.
Change the code of /libs/granite/ui/components/shell/clientlibs/shell/js/globalnav.js to display the new value.
Answers
C.
Create a new node /apps/cq/core/content/nav/sites and update the property icr:title.
C.
Create a new node /apps/cq/core/content/nav/sites and update the property icr:title.
Answers
D.
Modify the code of /libs/granite/ui/components/shell/globalnav/overlay/overlay.jsp to display the new value.
D.
Modify the code of /libs/granite/ui/components/shell/globalnav/overlay/overlay.jsp to display the new value.
Answers
Suggested answer: A

An AEM site experiences slower page loads. A developer needs to identify the slow running requests.

How should a developer analyze the requests with long response times?

A.
Use rlog.jar with the following command $ java -jar ../opt/helpers/rlogs.jar -n 10 requests.log to identify long running requests.
A.
Use rlog.jar with the following command $ java -jar ../opt/helpers/rlogs.jar -n 10 requests.log to identify long running requests.
Answers
B.
Use proxy.jar with the following command java -jar proxy.jar <host> <remoteport> <localport> to debug the webserver and AEM server communication.
B.
Use proxy.jar with the following command java -jar proxy.jar <host> <remoteport> <localport> to debug the webserver and AEM server communication.
Answers
C.
Download Heapdumps from Tools > Operations > Diagnosis and analyze the Heapdumps using the Memory Analyzer Tool.
C.
Download Heapdumps from Tools > Operations > Diagnosis and analyze the Heapdumps using the Memory Analyzer Tool.
Answers
D.
Embed /libs/foundation/components/timing component in the Page Component and verify the page load time.
D.
Embed /libs/foundation/components/timing component in the Page Component and verify the page load time.
Answers
Suggested answer: C
Total 92 questions
Go to page: of 10