Latest Update SASInstitute A00-201 practice test

Welcome to your Latest Update SASInstitute A00-201 practice test

QUESTION 1

Which one of the following SAS statements renames two variables?

QUESTION 2

The following SAS SORT procedure step generates an output data set:
proc sort data = sasuser.houses out = report; by style; run;
In which library is the output data set stored?

QUESTION 3

Which one of the following statements is true regarding the SAS automatic _ERROR_ variable?

QUESTION 4

The contents of the raw data file NAMENUM are listed below: —-I—-10—I—-20—I—-30 Joe xx
The following SAS program is submitted:
data test; infile `namenum\\’; input name $ number; run;
Which one of the following is the value of the NUMBER variable?

QUESTION 5

The following SAS program is submitted;
data work.month; date = put(\\’13mar2000\\’d,ddmmw10.); run;
Which one of the following represents the type and length of the variable DATE in the output data set?

QUESTION 6

The following SAS program is submitted:
proc report data = sasuser.houses nowd headline headskip; column style price;
where price
title;
run;
Click the Exhibit button to view the output from the REPORT procedure.
[2021.1] lead4pass a00-201 practice test q7
Assuming that the PRICE variable is numeric, which one of the following completes the program and produces the
output displayed in the exhibit?

QUESTION 7

The following SASS program is submitted:
data work.sales;
do year = 1 to 5;
do month = 1 to 12;
x+ 1;
end;
run;
Which one of the following represents how many observations are written to the WORK SALES data set?

QUESTION 8

When the following SAS program is submitted, the data set SASDATA.PRDSALES contains 5000 observations:
libname sasdata `SAS-data-library\\’;
options obs = 500;
proc print data = sasdata.prdsales (firstobs = 100); run;
options obs = max;
proc means data = sasdata.prdsales (firstobs = 500); run;
How many observations are processed by each procedure?

QUESTION 9

Which one of the following statements is true regarding the name of a SAS array?

QUESTION 10

The following SAS program is submitted:data work.passengers;
data work.passengers;
if OrigPassengers = then
OrigPassengers = 100;
TransPassengers = 100;
OrigPassengers = .;
NonPaying = 10;
TotalPassengers = OrigPassengers + TransPassengers; run;
Which one of the following is the value of the TOTALPASSENGERS variable in the output data set?

QUESTION 11

Which one of the following SAS DATA steps saves the temporary data set named MYDATA as a permanent data set?

QUESTION 12

The following SAS program is submitted:
data work.clients;
calls = 6;
do while (calls le 6);
calls + 1;
end;
run;
Which one of the following is the value of the variable CALLS in the output data set?