nerdexam
SAS_Institute

A00-211 · Question #147

The following SAS program is submitted: data test; infile `file specification'; input name $ amount@@; run; Which of the following is true?

The correct answer is C. Two @@ hold the raw data record across iterations of the DATA step. See the full explanation below for the reasoning.

Question

The following SAS program is submitted:

data test; infile `file specification'; input name $ amount@@; run; Which of the following is true?

Options

  • ATwo @@ together are the same as one c.
  • BTwo @@ hold the data records until the bottom of the DATA step.
  • CTwo @@ hold the raw data record across iterations of the DATA step.
  • DTwo @@ are invalid syntax and will cause the program to fail to execute.

How the community answered

(56 responses)
  • A
    7% (4)
  • B
    16% (9)
  • C
    73% (41)
  • D
    4% (2)

Community Discussion

No community discussion yet for this question.

Full A00-211 Practice