Which string of characters is used to identify the beginning of a new separate document when multiple documents are in a single YAML file?
- three slashes "///"
- three dots "..."
- three pound signs "###"
- three dashes "---"
Explanation: YAML files conventionally open with three dashes ( --- alone on a line) and end with three dots ( ... also alone a line). YAML also accommodates the notion of multiple "documents" within a single physical file, in this case, separating each document with three dashes on its own line.
Exam with this question: DevNet Associate Course Final Exam Answers
Please login or Register to submit your answer