A00-201 무료 덤프문제 온라인 액세스
| 시험코드: | A00-201 |
| 시험이름: | SAS base programming exam |
| 인증사: | SASInstitute |
| 무료 덤프 문항수: | 140 |
| 업로드 날짜: | 2026-05-27 |
The following SAS program is submitted:
data work.retail;
cost = '20000';
total = .10 * cost;
run;
Which one of the following is the value of the variable TOTAL in the output data set?
The following SAS program is submitted:
data work.passengers;
if OrigPassengers = . then
OrigPassengers = 100;
TransPassengers = 100;
OrigPassengers = .;
NonPaying = 10;
TotalPassengers = sum (OrigPassengers, TransPassengers);
run;
Which one of the following is the value of the TOTALPASSENGERS variable in the output data set?
The SAS data set EMPLOYEE_INFO is listed below:
The following SAS program is submitted:
proc sort data = employee_info;
< insert BY statement here>
run;
Which one of the following BY statements completes the program and sorts the data sequentially by descending expense values within each descending IDNUMBER value?