Questions
- Which of the following metacharacters allows you to view the assigned value of a variable?
*
-
%
$
^
- Which of the following statements is true?
- It’s perfectly correct to use either all upper-case or all lower-case letters to create your programming variable names.
- Variable names are not case-sensitive.
- You should always use upper-case letters to create the names of programming variables.
- You should always use lower-case letters to create the names of programming variables.
- How would you cause a child shell to recognize a variable that you created in the parent shell?
- In the child shell, import the variable from the parent shell.
- In the parent shell, use the
export
keyword when creating the variable. - You can’t, because the parent shell and child shell are isolated from each other.
- The child...