Multiple choice general knowledge science & technology

"SheBang" in Computer terminology refers to?

  1. ##

  2. #$
  3. #%

  4. #!

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

The shebang (#!) is a special character sequence at the beginning of Unix script files that tells the operating system which interpreter to use. It's followed by the path to the interpreter program (like #!/bin/bash or #!/usr/bin/python). This convention is essential for making executable scripts on Unix-like systems.