관리 메뉴

나루다루

SAS BASE Q57. 본문

문제풀이/기타

SAS BASE Q57.

나루다루 2018. 10. 31. 22:54
728x90

QUESTION NO: 57

Given the SAS data set PERM.STUDENTS:

PERM.STUDENTS

NAME AGE

Alfred 14

Alice 13

Barbara 13

Carol 14

 

The following SAS program is submitted:

libname perm 'SAS data library';

data students;

set perm.students;

file 'file specification';

put name $ age;

<insert statement here>

run;

 

The following double-spaced file is desired as output

Alfred 14

Alice 13

Barbara 13

Carol 14

 

Which statement completes the program and creates the desired file?

 

A. put

B. put/;

C. double;

D. put _null_;

 

 

Answer: A





# 문제 풀이

 - 

728x90
반응형

'문제풀이 > 기타' 카테고리의 다른 글

SAS BASE Q59. @ & informat [수정] ???  (0) 2018.11.01
SAS BASE Q58. first/last & if  (0) 2018.11.01
SAS BASE Q56. le & ge  (0) 2018.10.31
SAS BASE Q55. weekdate  (0) 2018.10.31
SAS BASE Q54. tables [수정]  (0) 2018.10.31
Comments