Write down the outputs when you execute the following script #!/bin/bash a=5; b=$(($a*2)) echo "b = $b" let c="$b*3-$a+1" echo "c= $c" d=`expr $c / $a` echo "d = $d"