AD0-E103 Exam QuestionsBrowse all questions from this exam

AD0-E103 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.

Show Answer
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

8 comments
Sign in to comment
Ashutosh_Shrivastava
Jun 15, 2020

Correct Order is Four , Three and One

qabbes
Nov 15, 2020

Why ???

pkg82
Jun 22, 2020

C is correct.

AEMSR
Jun 30, 2020

Correct ans is 3

grios
Jul 8, 2020

The correct answer is C

PSJadhav
Jul 11, 2020

Answer is C

gkay2
Jul 15, 2020

C is the correct option.

chunpin
Jan 9, 2021

Answer: C Just try in AEM6.5.

mahesh86
Jun 21, 2020

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