What is the output? #!/bin/sh msg1="one" Msg2="$msg1 two" Msg3="$msg2 three" echo $msg3

  1. “””one” two” three”

  2. “one two three”

  3. one two three

  4. “$msg2 three”


Correct Option: C

Find more quizzes: