AEM Certification Exam Questions and
Answers Already Passed | Graded A+
You just deployed a maven build of your bundle to your local instance. It's status is installed.
In order to make it activated, what should you do? - ✔✔Find it in the OSGi bundles console
and launch it by clicking the launch button
What does a profile do? - ✔✔This is an alternative set of configuration values which set or
override default values. When code cannot be 100% portable, you might need to set one
that uses different dependencies for your specific build environment (like unique settings for
building on Ubuntu).
Where is a Per Project profile set? - ✔✔This is set in the POM file
Where is a global profile set? - ✔✔This is set in ${maven.home}/conf/settings.xml
Where is a Per User profile set? - ✔✔This is set in %USER_HOME%/.m2/settings.xml
What plugin installs the package to AEM? - ✔✔Content-package-maven-plugin
, What part of maven command packages the jar? - ✔✔Package (in maven clean install package)
How do you generally add a 3rd party dependency? - ✔✔mvn install:install-file -Dfile=<path-
to-file> -DgroupId=<group-id> -DartifactId=<artifact-id> -Dversion=<version> -
Dpackaging=<packaging>
How do you add a 3rd party dependency with an external POM file? - ✔✔mvn install:install-file
-Dfile=<path-to-file> -DpomFile=<path-to-pomfile>
How do you add a 3rd party dependency with an internal POM file? - ✔✔mvn install:install-file
- Dfile=<path-to-file>
In HTL, which values are falsy (evaluate to false)? - ✔✔Undefined variables, null variables,
the number 0, and empty strings
What are the 2 div tags that will be produced from the following code:
<div data-one="${'foo'}" data-two="${2}" data-three="${true}" />
<div data-one="${''}" data-two="${0}" data-three="${false}" />? - ✔✔<div data-one="foo"
data-two="2" data-three/>
<div data-two="0"/>
How does ' in a string get encoded in an html attribute vs text? - ✔✔Html attribute: " ' " text:
<?>'<?>
Answers Already Passed | Graded A+
You just deployed a maven build of your bundle to your local instance. It's status is installed.
In order to make it activated, what should you do? - ✔✔Find it in the OSGi bundles console
and launch it by clicking the launch button
What does a profile do? - ✔✔This is an alternative set of configuration values which set or
override default values. When code cannot be 100% portable, you might need to set one
that uses different dependencies for your specific build environment (like unique settings for
building on Ubuntu).
Where is a Per Project profile set? - ✔✔This is set in the POM file
Where is a global profile set? - ✔✔This is set in ${maven.home}/conf/settings.xml
Where is a Per User profile set? - ✔✔This is set in %USER_HOME%/.m2/settings.xml
What plugin installs the package to AEM? - ✔✔Content-package-maven-plugin
, What part of maven command packages the jar? - ✔✔Package (in maven clean install package)
How do you generally add a 3rd party dependency? - ✔✔mvn install:install-file -Dfile=<path-
to-file> -DgroupId=<group-id> -DartifactId=<artifact-id> -Dversion=<version> -
Dpackaging=<packaging>
How do you add a 3rd party dependency with an external POM file? - ✔✔mvn install:install-file
-Dfile=<path-to-file> -DpomFile=<path-to-pomfile>
How do you add a 3rd party dependency with an internal POM file? - ✔✔mvn install:install-file
- Dfile=<path-to-file>
In HTL, which values are falsy (evaluate to false)? - ✔✔Undefined variables, null variables,
the number 0, and empty strings
What are the 2 div tags that will be produced from the following code:
<div data-one="${'foo'}" data-two="${2}" data-three="${true}" />
<div data-one="${''}" data-two="${0}" data-three="${false}" />? - ✔✔<div data-one="foo"
data-two="2" data-three/>
<div data-two="0"/>
How does ' in a string get encoded in an html attribute vs text? - ✔✔Html attribute: " ' " text:
<?>'<?>