What is the purpose of placing #!/bin/bash on the first line of the executable script?
#!/bin/bash
It grants executable permission to the file.
It tells the operating system to run the script with Bash.
It is only a descriptive comment with no role in direct execution.
It calculates how many command-line arguments were supplied.