What is the output of this program?
#! /usr/bin/awk -f
BEGIN {
a=10;
b=10;
print a==b ? "true":"false"
}
#! /usr/bin/awk -f
BEGIN {
a=10;
b=10;
print a==b ? "true":"false"
}A. true
B. false
C. syntax error
D. none of the mentioned
Answer: Option A

Join The Discussion