JN0-481 · Question #62
JN0-481 Question #62: Real Exam Question with Answer & Explanation
The correct answer is D. Use valid YAML syntax of key:value.. The error message states "Value should be dict", which means the YAML input must be a dictionary format. In YAML, a dictionary is defined using key: value pairs. The input sv_xxh alone is just a string, not a dictionary. To fix the issue, update the Values field to something like
Question
Exhibit
Options
- AUse the Builder option for input type of YAML.
- BRemove the trailing blank lines.
- CChange to JSON and click create.
- DUse valid YAML syntax of key:value.
Explanation
The error message states "Value should be dict", which means the YAML input must be a dictionary format. In YAML, a dictionary is defined using key: value pairs. The input sv_xxh alone is just a string, not a dictionary. To fix the issue, update the Values field to something like: sv_xxh: some_value This will satisfy the required structure for a valid YAML dictionary.
Community Discussion
No community discussion yet for this question.
