Examveda
Examveda

What is the output of this program?
#!/bin/bash
demo_var=hello
readonly demo_var
demo_var=hi
echo $demo_var
exit 0

A. hello

B. hi

C. nothing will print

D. none of the mentioned

Answer: Option A


This Question Belongs to Computer Science >> Linux

Join The Discussion

Related Questions on Linux