Linux Bash Arithmetic Expressions Question:
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

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