Which command on the command line provides the same output as this executable awk script?

#! /usr/bin/awk -f
BEGIN {
print "google"
}
a) awk 'BEGIN {print "google"}'
b) awk 'print "google"'
c) awk 'print {google}'
d) none of the mentioned

Submitted by: Murtaza
a) awk 'BEGIN {print "google"}'
Submitted by: Murtaza

Read Online Awk Programming Job Interview Questions And Answers