SAS Base, A00-211 Crambible
SAS 베이스 자격증
QUESTION NO: 30
The following SAS program is submitted:
data test;
set chemists;
itjobcode= 'Chem2'
then description = 'Senior Chemist';
else description = 'Unknown';
run;
The value for the variable JOBCODE is:
JOBCODE chem2
What is the value of the variable DESCRIPTION?
A. chem2
B. Unknown
C. Senior Chemist
D. ' ' (missing character value)
chem2를 if 조건에 넣어보면 되는데요.
itjobcode= 'Chem2' 에서 jobcode가 Chem2 인지 봐야겠죠? 아닙니다. 왜냐하면 대소문자가 맞지 않습니다. 그래서 else로 들어가서 Unknown으로 할당이 됩니다.
Answer: B
반응형
'SAS > Base Programmer' 카테고리의 다른 글
[A00-211, Crambible] SAS Q32 - input (0) | 2017.05.26 |
---|---|
[A00-211, Crambible] SAS Q32 - the syntax error (0) | 2017.05.26 |
[A00-211, Crambible] SAS Q29 - varnum (0) | 2017.05.26 |
[A00-211, Crambible] SAS Q28 - @ (0) | 2017.05.26 |
[A00-211, Crambible] SAS Q27 - weekday, month, ddate (0) | 2017.05.26 |