SAS Base, A00-211 Crambible
SAS 베이스 자격증
QUESTION NO: 18
The SAS data set PETS is sorted by the variables TYPE and BREED.
The following SAS program is submitted:
proc print data = pets;
vartype breed;
sum number;
run;
What is the result?
A. The SUM statement produces only a grand total of NUMBER.
B. The SUM statement produces only subtotals of NUMBER for each value of TYPE.
C. The SUM statement produces both a grand total of NUMBER and subtotals of NUMBER for each value of TYPE.
D. Nothing is produced by the SUM statement; the program fails to execute.
PETS이라는 데이타가 있는데요. TYPE과 BREED의 변수가 있다고 합니다.
var는 특정 데이타 셋 안에서 그 특정 변수만 보겠다는 뜻이고요.
sum은 총합을 계산해주는 함수입니다. 그래서 sum이 들어가면 grand total, 총합만 나오게 됩니다.
Answer: A
반응형
'SAS > Base Programmer' 카테고리의 다른 글
[A00-211, Crambible] SAS Q20 - PDV / output (1) | 2017.05.24 |
---|---|
[A00-211, Crambible] SAS Q19 - sum (a+b) (0) | 2017.05.24 |
[A00-211, Crambible] SAS Q17 (0) | 2017.05.24 |
[A00-211, Crambible] SAS Q16 (0) | 2017.05.24 |
[A00-211, Crambible] SAS Q15 (0) | 2017.05.23 |