Adobe AD0-E116 Adobe Experience Manager Sites Developer Expert Online Training
Adobe AD0-E116 Online Training
The questions for AD0-E116 were last updated at Nov 22,2024.
- Exam Code: AD0-E116
- Exam Name: Adobe Experience Manager Sites Developer Expert
- Certification Provider: Adobe
- Latest update: Nov 22,2024
A developer is creating a new OSGi bundle com.custom.package.b to expose new services.
com.custom.package.a is already installed and active in the system and has the following package definition:
The system console shows the following package availability:
Bundle com.custom.package.b to be installed has the following packagedefinition:
What will happen when the developer uploads the bundle com.custom.package.b into the system?
- A . The bundle will install but fail the activation due to unsatisfied dependencies com.sample.package.b and com.sample.package.c.
- B . The bundle willinstall but fail the activation due to unsatisfied dependency com.sample.package.c.
- C . The bundle will install and activate successfully.
- D . The bundle will install but fail the activation due to unsatisfied dependency com.sample.package.b.
A developer is creating a new OSGi bundle com.custom.package.b to expose new services.
com.custom.package.a is already installed and active in the system and has the following package definition:
The system console shows the following package availability:
Bundle com.custom.package.b to be installed has the following packagedefinition:
What will happen when the developer uploads the bundle com.custom.package.b into the system?
- A . The bundle will install but fail the activation due to unsatisfied dependencies com.sample.package.b and com.sample.package.c.
- B . The bundle willinstall but fail the activation due to unsatisfied dependency com.sample.package.c.
- C . The bundle will install and activate successfully.
- D . The bundle will install but fail the activation due to unsatisfied dependency com.sample.package.b.
Sensitive information is automatically decrypted using the CryptoSupport OSGi service before the value is returned
Two AEM publish instances feed a single Dispatcher.
Which part of the Dispatcher configuration should a developer review to ensure both AEM publish instances are used?
- A . virtualhosts
- B . farms
- C . filter
- D . cache
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 . Add the dependency to the third party bundle in pom.xml of the project bundle
- B . Embed the third party bundle in the bundle that depends on it
- C . Embed the bundle in a content package to have it automatically deployed
- D . Declare the dependency correctly using a link to the OSGi Bundle Reposirory (OBR)
Too many pages are invalidated in the dispatcher cache when a page is published.
What is most likely causing this issue in the dispatcher configuration?
- A . Sticky session are NOT configured properly, resulting in requests being delivered to the wrong server.
- B . The level of cache invalidation is NOT appropriate for the published content model.
- C . File globbing in the dispatcher configuration is NOT correct.
- D . The OS file systempermissions are NOT properly configured.
A custom application contains a service component com.proj.ServiceComponent. A developer needs to configure the string value name and integer value intVal. The actualconfiguration must be deployed using a content package.
What should the developer do to meet these requirements?
- A . "Use a file com.proj.ServiceComponent.cfg with content
name=""Service name""
intVal=I""5""" - B . "Use a file com.proj.ServiceComponent.configwith content
name=""Service name""
intVal=I""5""" - C . "Use a file com.proj.ServiceComponent.xml with content <?xml version=""1.0"" encoding=""UTF-8""?> <jcr:root jcr:primaryType=""sling:OsgiConfig""
name=""Service Name""
intVal=""5""/>" - D . "Use a file com.proj.ServiceComponent.xml with content <?xml version=""1.0"" encoding=""UTF-8""?>
<jcr:root xmlns:jcr=""http://www.jcp.org/jcr/1.0"" jcr:primaryType=""sling:OsgiConfig""
name=""Service Name""
intVal=""{Integer}5""/>"
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 condition field and have the value jcr:content/jcr:primaryType==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 nodetype field have the value cq:Page
Refer to thefollowing four Client Library Folders.
A developer uses the following:
What is the resulting HTML?
- A . Option A
- B . Option B
- C . Option C
- D . Option D
A developer is working on a complex project with multiple bundles. One bundle provides an OSGiservice for other bundles.
Which two options are necessary to ensure that the other bundles can reference that OSGi service? (Choose two.)
- A . The bundles consuming the service need to import the fully qualified name of the service interface.
- B . The bundle providing the service needs to contain an adequate SCR descriptor file.
- C . The bundle providing the service needs to export the java package of the service
interface. - D . The bundle providing the service needs to contain a whitelist of allowed consumer bundles.
- E . The service needs to correctly declare metatype information.