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)- A7% (4)
- B16% (9)
- C73% (41)
- D4% (2)
Community Discussion
No community discussion yet for this question.