반응형
250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 김윤상
- 부교공 면접
- 노경찬
- 천소소
- 객관식 경영학
- 아비무쌍 #오존
- 객경
- 2025년 #부산교통공사 #채용 #ncs #필기 #공부법
- 산업인력공단 #산인공 #ncs #모듈형 #정오표
- 코레일
- 강웅
- sas base
- 부교공
- 신입사원 채용
- 2025년 #부산교통공사 #채용
- 에듀윌 봉모
- 아비무쌍
- 무협
- 에듀윌특별판
- 부산교통공사
- 객관식 경영학 정오표
- 금강마신
- 모듈형 #산인공 #산업인력공단 #ncs #예시문제 #해설
- 토르마무
- 2024 부산교통공사 면접
- 김윤상 객경 정오표
Archives
- Today
- Total
나루다루
SAS BASE Q91. 오름차순/내림차순 정렬 본문
728x90
반응형
QUESTION NO: 91
The following program is submitted:
proc sort data=SASUSER.PROJECTS out=PSORT;
by Code descending Date Cost;
run;
Which of the following is true concerning the submitted program?
A. The descending option applies to the variable Code.
B. The variable Code is sorted by ascending order.
C. The PSORT data set is stored in the SASUSER library.
D. The descending option applies to the Date and Cost variables.
Answer: B
# 문제 풀이
- A) code, cost에는 오름차순, date에는 내림차순이 적용
- B) code는 오름차순 정렬
- C) PSORT 데이터는 work 라이브러리에 저장 (임시 라이브러리)
- D) descending 옵션은 date에만 적용
728x90
반응형
'문제풀이 > 기타' 카테고리의 다른 글
[R 문법 기초] 0. R을 다시 배우며.. (0) | 2018.12.28 |
---|---|
SAS Base 시험 준비/합격 후기/복원 문제 (0) | 2018.11.24 |
SAS BASE Q90. proc format / Q39 참조 (0) | 2018.11.03 |
SAS BASE Q89. proc contents & _all_ (0) | 2018.11.03 |
SAS BASE Q88. merge & in (0) | 2018.11.03 |
Comments