MCQ Practice
What is the output of this program? #!/bin/bash function hello_function1 { echo "This is first function" } hello_function2() { echo "This is second function" } hello_function1 hello_function2 exit 0
Subject: Computer Science EngineeringTopic: Linux
Correct Answer: C