A developer wants to be able to execute the following query:
Which two options are mandatory additions to the index? (Choose two.)
Astatus property with propertyIndex = false
Bnt:base aggregate
Cstatus property with propertyIndex = true
Dnt:base index rule
What is the correct resource type of the OSGI configuration node?
Asling:OsgiConfig
Bcq:OsgiConfig
Ccq:Configuration
Under which folder are changes in configuration persisted as configuration files (.config) in the repository?
A/conf
B/apps
C/content
D/et’
A developer wants to restrict the usage of a template to specific content path.
Which property should be set?
Acq:allowedPaths
Bsling:allowedTemplates
Csling:allowedPaths
Dcq:allowedTemplates
Question 6
0
Question 7
Question 8
Question 9
Question 10
Question 11
Question 12
Question 13
Question 14
Question 15
Question 16
Question 17
Question 18
Question 19
Question 20
Ask AstroTutor
0
Ask AstroTutor
0
Ask AstroTutor
0
Ask AstroTutor
0
Ask AstroTutor
0
Ask AstroTutor
0
Ask AstroTutor
0
Ad
Want a break from the ads?
Become a Supporter and enjoy a completely ad-free experience, plus unlock Learn Mode, Exam Mode, AstroTutor AI, and more.
Ask AstroTutor
0
Ask AstroTutor
0
Ask AstroTutor
0
Ask AstroTutor
0
Ask AstroTutor
0
Ask AstroTutor
0
Ask AstroTutor
0
An AEM Developer is given the responsibility to create a French version of an e-commerce site to various African French speaking countries like Chad, Ivory Coast and Senegal.
What are the correct steps to implement the sites with localized content?
ASelect AEM Multi-Site Manager and then use a Primary English version of pages to create French versions for Chad, Ivory Coast and Senegal
BSelect AEM Multi-Site Manager and then use a Primary French version of pages to create French versions for Chad, Ivory Coast and Senegal
CUse Multi-Site Manager to create live copy of site templates then use separate French version for Chad, Ivory Coast and Senegal
DUse local content authors to create the content for the local sites
A developer is working with a live copy page which is based on a blueprint and is not configured with a roll out configuration.
What happens when this is used?
AThe system default rollout configuration is used
BThe rollout configuration that is associated with the blueprint source page is used
CDuring the publication process an error is thrown out with a message “no roll out configuration done”
DThe rollout configuration that applies to the Live Copy page’s parent page is used
A developer has created a custom workflow model which includes a JAVA-based custom process step. During the creation of this custom process step, some data has been saved in metadata programmatically for subsequent workflow steps.
Which code snippet can be used to save this metadata in JAVA code?
AMetaDataMap wfd = workItem.getMetaDataMap();wfd.put("mykey", "My Step Value");
BMetaDataMap wfd = workItem.getWorkflow().getMetaDataMap();wfd.putf("mykey", "My Step Value");
CMetaDataMap wfd = workItem.getWorkflow().getWorkflowData().getMetaDataMap(); wfd.put("mykey", "My Step Value");
A developer wants a component to be visible to authors but not modifiable on any page created from the template.
What should be implemented?
ARemove the component from the allowed components in the policy
BPlace the component in the initial content section of the editable template
CDisable the component in the layout container settings
DLock the component in the structure section of the editable template
A developer needs to access structured data.
Which content provides this access?
ADialog
BExperience fragments
CDesign dialog
DContent fragments
An AEM Developer is asked to leverage Content Fragments to publishing in an AEM Headless App.
Which method will be best for this need?
AAEM WCM Core Components and Content Fragment Component
BContent Fragment Connectors
CAEM GraphQL APIs
DAEM HTTPS Assets API
A developer wants to replace the element name of the host element with titleLevel property of the model in HTL.
Which action would be taken to complete this task?
A <h1 data-sly-element="${titleLevel}" @context-'unsafe'></h1>
B <div data-sly-attribute="${titleLevel}"></div>
C <p data-sly-use.element="${titleLevel}"></p>
Multiple Experience fragments have been created as a part of the ongoing AEM Project. These Experience fragments can be exported to Adobe Target using the “Export to Adobe Target” configuration and by providing Cloud Configuration for Adobe Target.
What is the default format used to complete this export?
AHTML
BXML
CJSON
A developer wants to customize a core component.
Which property needs to be set in the new component to achieve this goal?
Asling:resourceSuperType
Bsling:superResourceType
Csling:resourceType
A developer needs to create a custom content authoring workflow in AEM.
After creating a workflow model, what is the correct step to create and deploy the workflow?
AApply the workflow to the site
BApply the workflow to a page
CApply the workflow to a template
A developer needs to remove all the selectors from the linkValue.
Assuming linkValue = 'path/page.woo.foo.html', which two HTL approaches would be used to complete this task? (Choose two.)
A${ linkValue @ removeSelectors=['foo', 'bar']}
B${ linkValue @ selectors="}
C${ linkValue @ selectors}
D${ linkValue @ removeSelectors='foo, bar, woo'}
In Adobe Experience Manager (AEM), when working with editable templates, a developer wants to apply custom components within a template using Sightly (HTL).
How would the developer accomplish this?
ABy using the cq:include tag to add custom components to editable templates in Sightly (HTL)
BBy modifying the cq:template node directly in CRX/DE without using Sightly (HTL)
CBy defining them in the template's design mode and then using the data-sly-resource tag in the Sightly (HTL) file
DCustom components are automatically included in editable templates, and do not need to be added manually.
A developer has created a custom workflow model. While using this custom workflow model on multiple assets/pages, an individual workflow instance is getting started for each asset/page.
Which property can be enabled to start a single workflow instance if multiple assets/pages have been selected?
ATransient Workflow
BMulti Resource Enable
CMulti Resource Support
A marketing team needs to reuse a product description across multiple pages and channels, including a website, a mobile app, and an email campaign.
Which AEM feature should the team use to manage and maintain consistency of this content?
ATemplate Fragment
BAsset Fragment
CContent Fragment
DExperience Fragment
A developer wants to render 'Hello World' only in edit mode.
Which approach would be used?
A <p data-sly-test="${wcm.edit}">Hello World</p>
B <p data-sly-test="${wcmmode.editor}">Hello World</p>
C <p data-sly-test="${wcmmode.edit}">Hello World</p>