A00-211 SAS Base Programming for SAS 9

Loading demo links...

Showing 1–3 of 15 questions

Question 1 (Volume B)

Which of the following programs correctly invokes the DATA Step Debugger?

Select an option, then click Submit answer.

  • Option A

  • Option B

  • Option C

  • Option D

Question 2 (Volume B)

The SAS data set BANKS is listed below:

BANKS

name rate

FirstCapital 0.0718

DirectBank 0.0721

VirtualDirect 0.0728

The following SAS program is submitted: data newbank; do year = 1 to 3; set banks; capital + 5000; end; run;

Which one of the following represents how many observations and variables will exist in the SAS data set NEWBANK?

Select an option, then click Submit answer.

  • 0 observations and 0 variables

  • 1 observations and 4 variables

  • 3 observations and 3 variables

  • 9 observations and 2 variables

Question 3 (Volume A)

The following SAS program is submitted:

data test; infile ‘file specification’;

input name $ amount@@; run;

Which of the following is true?

Select an option, then click Submit answer.

  • Two @@ together are the same as one c.

  • Two @@ hold the data records until the bottom of the DATA step.

  • Two @@ hold the raw data record across iterations of the DATA step.

  • Two @@ are invalid syntax and will cause the program to fail to execute.