Which of the following set of Unix commands will always display “WELCOME” ?
1.export title=WELCOME; Echo $title
2. title = WELCOME; export $ title ; sh –c “echo $title”
3.title = WELCOME; export title ; sh –c “echo $title”
4. title = WELCOME; echo $title
Answer:3