⟩ Define the output of the program? #! /usr/bin/awk -f BEGIN { a["linux","MCQ"]="google" print a["linux","MCQ"] } a) google b) linux MCQ c) a["linux","MCQ"] d) syntax error
a) google
Output:
root@ubuntu:/home/google# ./test.awk
root@ubuntu:/home/google#