Exam AD0-E103 All QuestionsBrowse all questions from this exam
Question 10

Refer to the following four Client Library Folders.

A developer uses the following:

What is the resulting HTML?

A.

B.

C.

D.

    Correct Answer:

    When the developer uses <data-sly-call="${clientlib.css @ categories='library.one'}"/>, it will include the CSS files for 'library.one' and its dependencies. 'library.one' has dependencies 'library.three' and 'library.four', which means their CSS files will also be included. The order in which libraries are included is based on their dependencies. Hence, 'library.four' (being a dependency of 'library.three') will be included first, then 'library.three', and finally 'library.one'. Therefore, the resulting HTML will be: <link rel="stylesheet" href="/library.four.css"/><link rel="stylesheet" href="/library.three.css"/><link rel="stylesheet" href="/library.one.css"/>. So, the correct answer is C.

Discussion
pkg82

C is correct.

Ashutosh_Shrivastava

Correct Order is Four , Three and One

qabbes

Why ???

chunpin

Answer: C Just try in AEM6.5.

gkay2

C is the correct option.

PSJadhav

Answer is C

grios

The correct answer is C

AEMSR

Correct ans is 3

mahesh86

Correct order is Three, Four and One? Still i have confusion.