nerdexam
SAS_Institute

A00-211 · Question #199

The contents of the raw data file TEAM are listed below: --------10-------20-------30 Janice 10 Henri 11 Michael 11 Susan 12 The following SAS program is submitted: data group; infile 'team'; input…

The correct answer is C. a SAS data set named GROUP and a raw data file. See the full explanation below for the reasoning.

Question

The contents of the raw data file TEAM are listed below:

--------10-------20-------30 Janice 10 Henri 11 Michael 11 Susan 12 The following SAS program is submitted:

data group; infile 'team'; input name $15. age 2.; file 'file-specification'; put name $15. +5 age 2.; run; Which one of the following describes the output created?

Options

  • Aa raw data file only
  • Ba SAS data set named GROUP only
  • Ca SAS data set named GROUP and a raw data file
  • DNo output is generated as the program fails to execute due to errors.

How the community answered

(24 responses)
  • A
    4% (1)
  • B
    4% (1)
  • C
    83% (20)
  • D
    8% (2)

Community Discussion

No community discussion yet for this question.

Full A00-211 Practice