What is the output of this program?

#! /usr/bin/awk -f
BEGIN {
a=6
do {
print "google"
a++
} while (a<5)
}
a) nothing will print
b) "google" will print 5 times
c) "google" will print 4 times
d) "google" will print only 1 time

Submitted by: Murtaza
d) "google" will print only 1 time
Explanation:
Even the condition is false of do-while loop, the body is executed once.
Output:
root@ubuntu:/home/google# ./test.awk
google
root@ubuntu:/home/google#
Submitted by: Murtaza

Read Online Awk Programming Job Interview Questions And Answers