a********r 发帖数: 60 | 1 The following SAS program is submitted:
data WORK.DATE_INFO;
X="01Jan1960" D ;
run;
Variable X contains what value?
A.
the numeric value 0
B.
the character value "01Jan1960"
C.
the date value 01011960
D.
the code contains a syntax error and does not execute.
why the answer is D instead of A?
thanks! |
k****1 发帖数: 123 | 2 d要小写
【在 a********r 的大作中提到】 : The following SAS program is submitted: : data WORK.DATE_INFO; : X="01Jan1960" D ; : run; : Variable X contains what value? : A. : the numeric value 0 : B. : the character value "01Jan1960" : C.
|
a********r 发帖数: 60 | |
d******m 发帖数: 2333 | 4 d可以大写的。
我不知道是不是原题跟lz写的一模一样,如果d or D前面没有空格的话,应该是a.不然
是syntax error.
【在 k****1 的大作中提到】 : d要小写
|
k****1 发帖数: 123 | 5 恩,我错了,是空格的问题
谢谢mm
【在 d******m 的大作中提到】 : d可以大写的。 : 我不知道是不是原题跟lz写的一模一样,如果d or D前面没有空格的话,应该是a.不然 : 是syntax error.
|
a********r 发帖数: 60 | 6 thank you both. I saw capitalized D in training material today so D should
be okay. |