Multiple choice technology operating systems

Which key allows to append the script in next line

  1. back slash

  2. Single quote

  3. full stop (dot)

  4. frontslash

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

In shell scripting, the backslash () is the line continuation character. When placed at the end of a line, it escapes the newline character, allowing the command to continue on the next line. This is essential for writing long, readable multi-line commands or scripts.