View all questions & answers for the PAP-001 exam
The application team has changed their directory paths. An administrator must adjust the following paths:
/images/sitel/
/images/sitel/checkout/default.html
/images/sitel/homepage/english/default.html
Which pattern would match the paths?
/images/aitel/checkout
/images/site*
/images/sitel/english/*
/images/sitel/*
The pattern/images/sitel/*matches all subpaths and files under the/images/sitel/directory, including nested paths.
Exact Extract:
“The asterisk (*) matches zero or more characters within the path. For example,/images/sitel/*matches all resources under thesitelfolder.”
Option Ais incorrect — it references/aitel/instead of/sitel/.
Option Bis incorrect —/site*matches strings beginning with “site”, but may also match “siteX” incorrectly.
Option Cis incorrect — it only matches resources under/english/, missing other folders.
Option Dis correct —/images/sitel/*covers all given examples.
Submit