C is the correct. D is wrong, thats why:
D: (**\*.exe)
This pattern is more rigid and likely to fail. The **\ part means "match zero or more directories, which must be followed by a path separator (\)."
For a subfolder like C:\Program Files\Software\Utils\app.exe: This works. The ** matches Utils, and the \ matches the separator.
For the top-level folder like C:\Program Files\Software\main.exe: This will likely FAIL. The ** matches zero directories, but then there is no backslash (\) between the Software folder and the main.exe filename.
C is not correct- Tested with console, doesn't work for subdirectories. Mus be D but thers is an error with the two dots before exe, must be Program Files\Software\**\*.exe
** (globstar) excludes all the current directory’s files and nested subdirectories.
upvoted 2 times
...
This section is not available anymore. Please use the main Exam Page.CCFA Exam Questions
Log in to ExamTopics
Sign in:
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one.
So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
RIchardMatos
3 months, 2 weeks agoafc9292
4 months, 1 week agoCiscoNoahexamtopic
5 months, 3 weeks ago