Refer to the exhibit.
Which two statements about the EEM applet configuration are true? (Choose two.)
A.
The EEM applet runs before the CLI command is executed.
B.
The EEM applet runs after the CLI command is executed.
C.
The EEM applet requires a case-insensitive response.
D.
The running configuration is displayed only if the letter Y is entered at the CLI.
Admin: Please correct, the answer is A & D.
sync
Indicates whether the policy should be executed synchronously before the CLI command
executes.
nocase
(Optional) Specifies case insensitive comparison.
Here we see that the sync knob was enabled so A is correct. However, C is not correct as the
nocase argument was not used, so the applet is configured to display the config only if a capital Y
is issued.
Reference.
Quite the opposite, C is correct and D is incorrect. See action 1.3
section 1.3 will convert lowercase to uppercase. my answer is AD
A and D, string toupper will store the Y to upper case
Whether C is correct or not all depends on what they mean. They script does not require the person to enter a particular case because the script will convert it the correct case. However in order for the match to be true …. it has to be in uppercase. It’s kind of a BS answer. A and D are definitely correct though.
“A” is obviously correct.
The C/D doubt is interesting, so I made a test.
The applet works.
If you answer “y” (lowercase) the config appears.
According to that – C is true and D is false (“y” is not “Y”).