나루다루

[SAS BASE] Q57. ? 본문

Study/SAS BASE

[SAS BASE] Q57. ?

나루다루 2018. 5. 23. 05:20
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




- file '경로' : 해당 경로에 파일을 생성한다.

- put

- double-space : 한 행식 띄어 타자하다.

728x90
반응형

'Study > SAS BASE' 카테고리의 다른 글

[SAS BASE] informat 정리  (0) 2018.05.30
[SAS BASE] Q58. first & last & if  (0) 2018.05.28
[SAS BASE] Q56. le  (0) 2018.05.23
[SAS BASE] Q55. weekdate.  (0) 2018.05.23
[SAS BASE] Q54. tables  (0) 2018.05.23
Comments