diff --git a/bash/bash-quiz.md b/bash/bash-quiz.md index c38b6f68d1..d6b80a665b 100755 --- a/bash/bash-quiz.md +++ b/bash/bash-quiz.md @@ -684,3 +684,10 @@ echo "${VAR//man/rolling}" - [ ] This old man came rolling - [x] This old rolling came rolling - [ ] This old came + +#### Q57. What statement would you use to print this in the console? + +- [ ] `echo "Shall we play a game? yes/\no"` +- [ ] `echo "Shall we play a game\? yes\\no"` +- [x] `echo "Shall we play a game? yes\\no"` +- [ ] `echo "Shall we play a game? yes\no"`