Pakistan's #1 Platform for Government Jobs, Competitive Exams & Career Guidance
MCQ Practice
What is the output of this program? #!/bin/bash test_var="Example" echo "$test_var" echo '$test_var' echo '"$test_var"' echo "'$test_var'" echo $test_var exit 0