What is the output of the program?
#! /usr/bin/awk -f
BEGIN {
a["linux","MCQ"]="example"
print a["linux","MCQ"]
}
#! /usr/bin/awk -f
BEGIN {
a["linux","MCQ"]="example"
print a["linux","MCQ"]
}A. example
B. linux MCQ
C. a["linux","MCQ"].
D. syntax error
Answer: Option A

Join The Discussion