nerdexam
SAS_Institute

A00-211 · Question #20

Given the contents of the raw data file TYPECOLOR: ----I----10---I----20---I----30 Daisyyellow The following SAS program is submitted: data flowers; infile `typecolor'; input type$ 1-5+1 color$…

The correct answer is B. type color. See the full explanation below for the reasoning.

Question

Given the contents of the raw data file TYPECOLOR:

----I----10---I----20---I----30 Daisyyellow The following SAS program is submitted:

data flowers; infile `typecolor'; input type$ 1-5+1 color$; run; What are the values of the variables TYPE and COLOR?

Options

  • Atype color
  • Btype color
  • Ctype color
  • DNo values are stored for the TYPE and COLOR variables.

How the community answered

(50 responses)
  • A
    4% (2)
  • B
    82% (41)
  • C
    12% (6)
  • D
    2% (1)

Community Discussion

No community discussion yet for this question.

Full A00-211 Practice