95 Exam Questions for AD0-E116 Updated Versions With Test Engine [Q20-Q35]

Share

95 Exam Questions for AD0-E116 Updated Versions With Test Engine

Pass AD0-E116 Exam with Updated AD0-E116 Exam Dumps PDF 2022

NEW QUESTION 20
Which log file contains AEM application request and response entries?

  • A. history.log
  • B. response.log
  • C. audit.log
  • D. request.log

Answer: D

 

NEW QUESTION 21
A developer needs to analyze log messages for custom Java application. The developer writes the following Java class:

The developer creates a custom log named custom.log with a debug level in OSGi web console for Java package com.abc.xyz.

Where should the developer look in the OSGi web console to view the above message?

  • A. OSGi -> Log Service and click logs/custom.log
  • B. Sling-> Log Support and click logs/custom.log
  • C. Sling -> Metrics and click logs/custom.log
  • D. AEM -> Log Support and click logs/custom.log

Answer: B

 

NEW QUESTION 22
A custom AEM application is using the PageManager API.
What should a developer add to make the application compile and run correctly in AEM?

  • A. a maven dependency to AEM uber-jar to the content package
  • B. a maven dependency to AEM uber-jar to the application bundle
  • C. a maven dependency to bundle cq-wcm-core to the application bundle
  • D. a maven dependency to bundle cq-wcm-api to the content package

Answer: B

 

NEW QUESTION 23
A developer wants to extend AEM Core Components to create a custom Carousel Component.
How should the developer extend the Core Components?

  • A. Make changes to the original component and assign a component group.
  • B. Use the sling:resourceSuperType property to point to the core component.
  • C. Copy the Core Carousel component to /apps/<project> folder.
  • D. Use the sling:resourceType property to point to the core component.

Answer: B

 

NEW QUESTION 24
There are performance, stability, and security issues with an installed AEM instance.
What should a developer do to fix these issues?

  • A. Install Adobe-provided Apache configuration file.
  • B. Delete and reinstall the AEM instance.
  • C. Install service pack updates from package share.
  • D. Stop, clear cache files, and restart the AEM instance.

Answer: C

 

NEW QUESTION 25
A developer needs an existing workflow to run only when pages are created under a certain folder.
What should the developer create to achieve this?

  • A. A Launcher with the field path pointing to the folder and nodetype field have the value cq:Page
  • B. A Launcher with the field condition that has the value jcr:content/page
  • C. A Launcher with the field exclude that has the value jcr:nodeType==cq:Page
  • D. A Launcher with the field path pointing to the folder and condition field and have the value jcr:content/jcr:primaryType==cq:Page

Answer: A

 

NEW QUESTION 26
A custom AEM application has a run time dependency to a third party OSGi bundle that is NOT included in out-of-the-box AEM. The third party dependency needs to be available for multiple applications and be upgraded separately from the custom AEM application.
How should a developer make sure that the bundle is installed on all environments?

  • A. Embed the bundle in a content package to have it automatically deployed
  • B. Add the dependency to the third party bundle in pom.xml of the project bundle
  • C. Embed the third party bundle in the bundle that depends on it
  • D. Declare the dependency correctly using a link to the OSGi Bundle Reposirory (OBR)

Answer: A

 

NEW QUESTION 27
A developer is installing a content package with the package manager. The developer needs to restrict the approximate number of nodes in a batch that is saved to persistent storage in one transaction.
How should the developer modify the number of transient nodes to be triggered until automatic saving?

  • A. Change the value of Save Threshold in the Install Package dialog-box.
  • B. Select the option MergePreserve for the Access Control Handling drop-down in the Install Package dialog-box.
  • C. Modify the export package manifest header and copy the content package to AEM installation folder.
  • D. AEM instances automatically modify the number of transient nodes based on the load balancing.

Answer: A

Explanation:
Reference:
https://helpx.adobe.com/ro/experience-manager/kt/sites/using/gettingstarted- wknd-tutorial-develop/part1.html

 

NEW QUESTION 28
A developer creates an AEM editable template that includes a Layout Container. When the developer creates a page using this template, the Layout Container placeholder does NOT appear.
What is causing this issue?

  • A. The Layout Container has NOT been unlocked.
  • B. The page template has NOT been published.
  • C. The Layout Container does NOT have a policy.
  • D. The page template has NOT been enabled.

Answer: A

 

NEW QUESTION 29
A developer is working with the following HTL expression in a component rendering script:
${'path/page.infinity.json' @extension = 'html',
removeSelectors = ['foo'],
selectors = ['foo', 'bar'],
prependSuffix = 'hello',
suffix = 'world' }
What is the expected output of this expression?

  • A. path/page.foo.bar.html/hello/world
  • B. path/page.bar.html/world
  • C. path/page.infinity.json.bar.html/world
  • D. path/page.bar.html/hello/world

Answer: D

 

NEW QUESTION 30
A service component periodically retrieves content from an external REST interface and saves the information in JCR. The REST endpoint is configured via an OSGi service property. There is one URL for production (runmode prod) and another URL for all other environments.
How should a developer configure the OSGi service?

  • A. Underneath /apps/<project>/settings, create the sub folders global and prod and node with name <PID>.conf each and configure the properties via node properties.
  • B. Underneath /config/<project>/settings, create the sub folders config.default and config.prod and a file with the name <PID>.config each and list the properties as key value pairs in there.
  • C. Underneath /apps/<project>, create the sub folders config and config.prod and a file with the name <PID>.config each and list the properties as key value pairs in there.
  • D. Underneath /config/<project>/settings, create the sub folders config and config.prod and a file with the name <PID>.config each and list the properties as key value pairs in there.

Answer: C

 

NEW QUESTION 31
Which environment variable in the AEM start script should a developer modify to enable remote debugging?

  • A. CQ_JVM_OPTS
  • B. CQ_RUNMODE
  • C. CQ_PORT
  • D. CQ_HOST

Answer: A

 

NEW QUESTION 32
One content package of a custom application contains the following content paths.

The server also contains the content path /apps/myproj/configuration that must NOT be touched when installing the package.
Which two filter definitions should a developer use to always update only the contained paths upon installation in the server? (Choose two.)

  • A. Option C
  • B. Option B
  • C. Option E
  • D. Option A
  • E. Option D

Answer: A,E

 

NEW QUESTION 33
A developer must create a workflow step that assigns a 'WorkItem' to the appropriate person based on who has the least amount work to do.
The group that must perform the action is configured into the workflow.
Which non-deprecated interface should the Java implementation class use to perform the assignment?

  • A. com.day.cq.workflow.exec.WorkItem
  • B. com.day.cq.workflow.exec.ParticipantChooser
  • C. com.adobe.granite.workflow.exec.ParticipantStepChooser
  • D. com.adobe.granite.workflow.exec.WorkflowData

Answer: C

 

NEW QUESTION 34
Refer to the following four Client Library Folders.

A developer uses the following:

What is the resulting HTML?

  • A. Option C
  • B. Option B
  • C. Option D
  • D. Option A

Answer: A

 

NEW QUESTION 35
......

AD0-E116 Exam Dumps - Free Demo & 365 Day Updates: https://www.actual4dumps.com/AD0-E116-study-material.html

Free Sales Ending Soon - Use Real  AD0-E116 PDF Questions: https://drive.google.com/open?id=1Fv5v8X5xT0QgLuSRP3xZE6kThPWcfqEv