AD0-E103 Exam Questions - Online Test


AD0-E103 Premium VCE File

Learn More 100% Pass Guarantee - Dumps Verified - Instant Download
150 Lectures, 20 Hours

certleader.com

Master the AD0-E103 Adobe Experience Manager Developer content and be ready for exam day success quickly with this Passleader AD0-E103 exam cram. We guarantee it!We make it a reality and give you real AD0-E103 questions in our Adobe AD0-E103 braindumps.Latest 100% VALID Adobe AD0-E103 Exam Questions Dumps at below page. You can use our Adobe AD0-E103 braindumps and pass your exam.

Also have AD0-E103 free dumps questions for you:

NEW QUESTION 1
An application contains an OSGi configuration that contains a password.
How should a developer prevent this sensitive information from being stored in plain text in JCR?

  • A. 1. Use console at /system/console/crypto to encrypt the value2. Either create an encrypted value for each AEM instance and use runmodes to apply the different values or make sure relevant instances share the same master key3. When loading the value in the code, call CryptoSupport.unprotect(_) before using the value
  • B. 1. Use console at /system/console/configMgr and tick the checkbox "encrypt" before saving a configuration2. Use encrypted values work across all instances3. When loading the value in the code, call CryptoSupport.unprotect(...) before using the value
  • C. 1. Use console at /system/console/crypto to encrypt the value2. Either create an encrypted value for each AEM instance and use runmodes to apply the different values or make sure relevant instances share the same master key3. Sensitive information is automatically decrypted using the CryptoSupport OSGi service before thevalue is returned
  • D. 1. Use console at /system/console/configMgr and tick the checkbox "encrypt" before saving a configuration2. Either create an encrypted value for each AEM instance and use runmodes to apply the different values or make sure relevant instances share the same master key3. Sensitive information is automatically decrypted using the CryptoSupport OSGi service before the value is returned

Answer: A

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

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

Answer: A

NEW QUESTION 3
A developer needs to configure sets of values according to the following parameters:
- Varies for different staging environments
- Varies for different content paths
- Diffets between author and publish
Which implementation strategy should the developer use to meet these requirements?

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

Answer: A

NEW QUESTION 4
Which log file should a developer use to search for exception stacktraces?

  • A. <aem-install>/crx-quickstart/logs/error.log
  • B. <aem-install>/crx-quickstart/logs/request.log
  • C. <aem-install>/crx-quickstart/logs/access.log
  • D. <aem-install>/crx-quickstart/logs/info.log

Answer: A

NEW QUESTION 5
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.infinity.json.bar.html/world
  • C. path/page.bar.html/hello/world
  • D. path/page.bar.html/world

Answer: C

NEW QUESTION 6
In which maven build phase is the content package assembled?

  • A. install
  • B. compile
  • C. package
  • D. deploy

Answer: C

NEW QUESTION 7
A developer wants to consume AEM Page Data in Single Page Application. The Single Page Application is coded to understand JSON format. Only page content should be exposed through JSON. All the existing components are based on foundation components.
Which change should the developer make in the existing components to support this requirement?

  • A. Add JSON as the default extension in Apache Sling Servlet?Script Resolver and Error handler Configuration
  • B. Implement a Sling Model Exporter for the components
  • C. Create a custom sling event handler to handle JSON requests
  • D. Invoke the page URL with the extension .json to get the values to construct the required output

Answer: B

NEW QUESTION 8
A developer needs to implement a header component for a website. The component has the following requirements:
- The component should be configured once on the page highest in the hierarchy.
- The header component on pages lower in the hierarchy should look the same and show the same data.
- If necessary, the configuration can be overwritten on a child page.
- The component should show a list of links that are configured in the header component. Which code snippet for returning the list of pages should the developer use?

  • A. "public String[] getHeaderLinks(Page page) {final Resource pageContent = page.getContentResource();final ComponentInheritanceValueMap properties = ComponentInheritanceValueMap(pageContent); return properties.get(HEADER_PAGE_LIST, String[].class);}"
  • B. "public String[] getHeaderLinks(Resource componentResource) { final ComponentInheritanceValueMap properties =componentResource.adaptTo(ComponentInheritanceValueMap.class);return properties.getInherited(HEADER_PAGE_LIST, String[].class);}"
  • C. "public String[] getHeaderLinks(Resource componentResource) {final HierarchyNodeInheritanceValueMap properties = new HierarchyNodeInheritanceValueMap (componentResource);return properties.getInherited(HEADER_PAGE_LIST, String[].class);}"
  • D. "public String[] getHeaderLinks(Resource componentResource) {final HierarchyNodeInheritanceVauleMap properties = componentResource.adaptTo(HierarchyNodeInheritanceVauleMap.class);return properties.getInherited(HEADER_PAGE_LIST, String[].class);}"

Answer: C

NEW QUESTION 9
A developer is working on a complex project with multiple bundles. One bundle provides an OSGi service 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.

Answer: AC

NEW QUESTION 10
A developer wants to create a Client Library that will only be included on touch enabled devices. What action should the developer take to achieve this?

  • A. Add the line "#base=touch" to the js.txt and css.txt files in the Client Library Folder
  • B. Pass the parameter user-agent='touch' when referencing the Client Library
  • C. Set the channels property on the Client Library Folder to "touch"
  • D. Create a resource folder called "touch" under the Client Library Folder

Answer: C

NEW QUESTION 11
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

Answer: B

NEW QUESTION 12
There is a config file package.myClass.config.factory-myApp.xml – what is true? (Choose two)

  • A. The word "config" is a sign of factory
  • B. The word "factory" is a sign of factory
  • C. Should be set package.myClass.config.factory-<identifer>
  • D. Must be set package.myClass.config.factory-<identifer>

Answer: C

NEW QUESTION 13
What is not available in globel.jsp?

  • A. currentPage
  • B. currentNode
  • C. currentDesign
  • D. currentResource

Answer: D

NEW QUESTION 14
Refer to the following Client Library node structure.
+clientlibs
- jcr:primaryType="cq:ClientLibraryFolder"
- categories="[clientlibs.example]"
+ js.txt
- jcr:primaryType="nt:file"
+ css.txt
- jcr:primaryType="nt:file"
+ js
- jcr:primaryType="nt:folder"
- javascript1.js
- javascript2.js
The js.txt looks like javascript1.js javascript2.js
The JavaScript is NOT present in the Client Library when it is loaded. What should a developer do to resolve this issue?

  • A. Change the js folder to a Client Library node and add the property categories = "[clientlibs.example]"
  • B. Change the js folder to a Client Library node and embed it on the clientlibs node
  • C. Add #base=js as the first line in the js.txt file
  • D. Split the js and css into 2 Client Libraries since they can't be in the same Client Library

Answer: C

NEW QUESTION 15
Which xml tag is used within the vault package definition to add a new path to a content package?

  • A. <path>
  • B. <filter>
  • C. <content>
  • D. <rule>

Answer: B

NEW QUESTION 16
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

Answer: D

NEW QUESTION 17
A custom AEM application contains a service component that needs to access the JCR repository within the activate method. The activate method uses ResourceResolverFactory.getServiceResourceResolver(...) without specifying a sub service name.
What should a developer do to make sure the user service mapping for the service component is available?

  • A. Create a field of type ServiceUserMapper and annotate it with @Reference using ReferencePolicy.STATIC
  • B. Wait for the service ServiceUserMapper via BundleContext.getServiceReference(...)
  • C. Create a field of type ServiceUserMapped and annotate it with @Reference using ReferencePolicy.DYNAMIC
  • D. Create a field of type ServiceUserMapped and annotate it with @Reference

Answer: D

NEW QUESTION 18
A developer needs to install a content package on an AEM environment. However a content package with the same name is already installed.
What would be the safest way for the developer to install the content package to make sure only the changes of the new content package get applied?

  • A. Upload the content package to the CRX Package Share before installing it
  • B. Use the "Force Upload" option when uploading the new content package
  • C. Uninstall the existing content package before installing the new content package
  • D. Install the content package using the OSGi web console

Answer: C

NEW QUESTION 19
A developer wants to automatically truncate request log files once they exceed 10 MB. Which OSGi configuration should the developer modify?

  • A. Apache Sling Logging Configuration
  • B. Adobe Granite Log Analysis Service
  • C. Apache Sling Customizable Request Data Logger
  • D. Apache Sling Logging Writer Configuration

Answer: D

NEW QUESTION 20
......

P.S. prep-labs.com now are offering 100% pass ensure AD0-E103 dumps! All AD0-E103 exam questions have been updated with correct answers: https://www.prep-labs.com/dumps/AD0-E103/ (50 New Questions)