Interview Questions Answers.ORG
Interviewer And Interviewee Guide
Interviews
Quizzes
Home
Quizzes
Interviews Linux OS Interviews:Awk ProgrammingBash Arithmetic ExpressionsDevice DriversGCC CompilerLinux AdministratorLinux CommandsLinux DebuggingLinux EnvironmentLinux GeneralLinux IPCLinux MakefileLinux OSLinux OS EditorsLinux OS ManagementLinux OS ShellLinux Proc FilesystemLinux Search PatternLinux Shared & Static LibrariesLinux Socket ProgrammingLinux Startup and ShutdownLinux SysfsLinux SystemsLinux ThreadsLinux UbuntuSignal HandlingSystem Calls
Copyright © 2018. All Rights Reserved
Awk Programming Interview Question:
What is the output of the program?
#! /usr/bin/awk -f
BEGIN {
a[1]="google"
a[2]="google"
for(i=1;i<3;i++) {
print a[i]
}
}
a) "google" will print 2 times
b) "google" will print 3 times
c) program will generate error becasue 2 array elements have the same value
d) program will generate syntax error
Submitted by: Murtazaa) "google" will print 2 times
Output:
root@ubuntu:/home/google# ./test.awk
google
google
root@ubuntu:/home/google#
Submitted by: Murtaza
Output:
root@ubuntu:/home/google# ./test.awk
root@ubuntu:/home/google#
Submitted by: Murtaza
Copyright 2007-2025 by Interview Questions Answers .ORG All Rights Reserved.
https://InterviewQuestionsAnswers.ORG.

https://InterviewQuestionsAnswers.ORG.
