What is the output of this program?
#!/bin/bash
a=10
b=$(( $a<0&&$a<100 ))
echo $b
exit 0
a) 10
b) 0
c) 1

Submitted by: Murtaza
b) 0
The condition '$a<0' is false so logical and operator provides the output 0.
Submitted by: Murtaza

Read Online Bash Arithmetic Expressions Job Interview Questions And Answers