nerdexam
SAS_Institute

A00-201 · Question #67

The contents of the raw data file TYPECOLOR are listed below: |----1----|----10----|----20----|----30 daisy yellow The following SAS program is submitted: data flowers; infile 'typecolor'; input…

The correct answer is B. TYPE: daisy, COLOR: ellow. See the full explanation below for the reasoning.

Question

The contents of the raw data file TYPECOLOR are listed below: |----1----|----10----|----20----|----30 daisy yellow The following SAS program is submitted: data flowers; infile 'typecolor'; input type $ 1-5 +1 color $; run; Which one of the following represents the values of the variables TYPE and COLOR?

Options

  • ATYPE: daisy, COLOR: yellow
  • BTYPE: daisy, COLOR: ellow
  • CTYPE: daisyyellow, COLOR: (missing character value)
  • DNo values are stored as the program fails to execute due to syntax errors.

How the community answered

(27 responses)
  • A
    11% (3)
  • B
    78% (21)
  • C
    7% (2)
  • D
    4% (1)

Community Discussion

No community discussion yet for this question.

Full A00-201 Practice