nerdexam
SAS_Institute

A00-212 · Question #63

The following SAS program is submitted: data temp; length a 1 b 3 x; infile 'file reference'; input a b x; run; What is the result?

The correct answer is B. The data set TEMP is not created because variable AS has an invalid length. See the full explanation below for the reasoning.

Question

The following SAS program is submitted:

data temp; length a 1 b 3 x; infile 'file reference'; input a b x; run; What is the result?

Options

  • AThe data set TEMP is not created because variables A and B have invalid lengths
  • BThe data set TEMP is not created because variable AS has an invalid length
  • CThe data set TEMP is created, but variable X is not created
  • DThe data set TEMP is created and variable X has a length of 8

How the community answered

(27 responses)
  • A
    11% (3)
  • B
    81% (22)
  • C
    4% (1)
  • D
    4% (1)

Community Discussion

No community discussion yet for this question.

Full A00-212 Practice