From b2537f71e82f045509ef285d04863ddffb888cdf Mon Sep 17 00:00:00 2001 From: bloodiator2 <86468614+bloodiator2@users.noreply.github.com> Date: Tue, 29 Jun 2021 09:33:25 +0300 Subject: [PATCH] added 57 (#1770) --- bash/bash-quiz.md | 7 +++++++ 1 file changed, 7 insertions(+) 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"`