Awk Programming Question:
Download Questions PDF

All numeric values are represented within awk in:
a) double precision floating point
b) integer
c) exponential notation
d) fixed point

Answer:

a) double precision floating point

Download Awk Programming Interview Questions And Answers PDF

Previous QuestionNext Question
What is the output of this program?

#! /usr/bin/awk -f
BEGIN {
print "20"<"9" ? "true":"false"
}
a) true
b) false
c) syntax error
d) none of the mentioned
Concatenation is performed by:
a) writing expressions next to one another, with no operator
b) conditional operator
c) relational operator
d) matching operator