What is the output of this program?
#! /usr/bin/awk -f
BEGIN {
a=0
do {
print "google"
a++
} while (a<5)
}
a) "google" will print 4 times
b) "google" will print 5 times
c) nothing will print
d) syntax error
Submitted by: Murtazab) "google" will print 5 times
Output:
root@ubuntu:/home/google# ./test.awk
google
google
google
google
google
root@ubuntu:/home/google#
Submitted by: Murtaza
Output:
root@ubuntu:/home/google# ./test.awk
root@ubuntu:/home/google#
Submitted by: Murtaza
Read Online Awk Programming Job Interview Questions And Answers
Top Awk Programming Questions
☺ | The next statement: |
☺ | The command \"awk {print $1} san.txt\" will: |
☺ | The break statement: |
☺ | Which statement instructs gawk to stop processing the current data file? |
Top Linux OS Categories
☺ | Device Drivers Interview Questions. |
☺ | Linux OS Management Interview Questions. |
☺ | Linux Makefile Interview Questions. |
☺ | Linux Environment Interview Questions. |
☺ | Linux OS Shell Interview Questions. |