MCQ Practice
What is the output of this program? #!/bin/sh test_function1() { a=5 echo "This is the first function" test_function2 } test_function2() { echo "This is the second function" test_function3 } test_function3() { echo "This is the third function" } test_function1 exit 0
Subject: Computer Science EngineeringTopic: Linux
Correct Answer: A