单选题Given the following script, why does the output come out as an empty line instead of "dog"()#!/bin/ksh  $VAR=dog  echo "${VAR}"A The $VAR variable was not exported.B The $VAR should have been set as VAR.C dog needs double quotes around it when setting 

题目内容(请给出正确答案)
单选题
Given the following script, why does the output come out as an empty line instead of "dog"()#!/bin/ksh  $VAR=dog  echo "${VAR}"
A

The $VAR variable was not exported.

B

The $VAR should have been set as VAR.

C

dog needs double quotes around it when setting $VAR.

D

The { } should not be around VAR in the echo command.

参考答案和解析
正确答案: A
解析: 暂无解析
如果没有搜索结果或未解决您的问题,请直接 联系老师 获取答案。
更多相关问题