(Official exam topics not publicly listed on Adobe’s certification page)
An AEM Developer is responsible for creating a French version of an e-commerce site for several French-speaking African countries, including Chad, Ivory Coast, and Senegal.
What are the correct steps for implementing 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
0
Community Discussion
No comments yet. Be the first to start the discussion!
That's the end of the preview
It's free
100% of the questions are free for all users. No strings attached.
(Official exam topics not publicly listed on Adobe’s certification page)
Save question
0
Community Discussion
No comments yet. Be the first to start the discussion!
Save question
0
Community Discussion
No comments yet. Be the first to start the discussion!
Save question
0
Community Discussion
No comments yet. Be the first to start the discussion!
Save question
0
Community Discussion
No comments yet. Be the first to start the discussion!
Save question
0
Community Discussion
No comments yet. Be the first to start the discussion!
Save question
0
Community Discussion
No comments yet. Be the first to start the discussion!
Save question
0
Community Discussion
No comments yet. Be the first to start the discussion!
Save question
0
Community Discussion
No comments yet. Be the first to start the discussion!
Save question
0
Community Discussion
No comments yet. Be the first to start the discussion!
Save question
0
Community Discussion
No comments yet. Be the first to start the discussion!
Save question
0
Community Discussion
No comments yet. Be the first to start the discussion!
Save question
0
Community Discussion
No comments yet. Be the first to start the discussion!
Save question
0
Community Discussion
No comments yet. Be the first to start the discussion!
Save question
0
Community Discussion
No comments yet. Be the first to start the discussion!
A developer is working with a Live Copy page that is based on a blueprint and is not configured with a rollout configuration.
What happens when it 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 created a custom workflow model that contains a JAVA-based custom process step. While creating this custom process step, data was programmatically saved in metadata for use by later workflow steps.
Which code snippet can 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 needs a component to be visible to authors but not editable on every 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 access to structured data.
Which type of content offers that access?
ADialog
BExperience fragments
CDesign dialog
DContent fragments
An AEM Developer is asked to use Content Fragments for publishing in an AEM Headless App.
Which method best meets this need?
AAEM WCM Core Components and Content Fragment Component
BContent Fragment Connectors
CAEM GraphQL APIs
DAEM HTTPS Assets API
A developer needs to replace the host element’s element name with the model’s titleLevel property in HTL.
Which action should 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 part of the ongoing AEM project. These Experience Fragments can be exported to Adobe Target by using the “Export to Adobe Target” configuration and providing the Adobe Target Cloud Configuration.
What is the default format used to complete this export?
AHTML
BXML
CJSON
A developer needs to customize a Core Component.
Which property must be configured in the new component to accomplish this?
Asling:resourceSuperType
Bsling:superResourceType
Csling:resourceType
A developer must create a custom content-authoring workflow in AEM.
After creating a workflow model, which step correctly creates and deploys the workflow?
AApply the workflow to the site
BApply the workflow to a page
CApply the workflow to a template
A developer must remove all selectors from linkValue.
Assuming linkValue = 'path/page.woo.foo.html', which two HTL approaches would be used to accomplish 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), while using editable templates, a developer wants to use custom components in a template with Sightly (HTL).
How can the developer do 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. When this custom workflow model is used on multiple assets/pages, a separate workflow instance is started for each asset/page.
Which property can be enabled to start one workflow instance when multiple assets/pages are selected?
ATransient Workflow
BMulti Resource Enable
CMulti Resource Support
A marketing team must reuse a product description across several pages and channels, including a website, a mobile app, and an email campaign.
Which AEM feature should the team use to manage this content and keep it consistent?
ATemplate Fragment
BAsset Fragment
CContent Fragment
DExperience Fragment
A developer needs to render ‘Hello World’ only when in edit mode.
Which approach should 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>
Under AEM Sites Capabilities in AEM as a Cloud Service, which feature is recommended as the replacement when the JavaScript Use API has been deprecated?
Community Discussion