nerdexam
SAS_Institute

A00-211 · Question #72

The following SAS program is submitted: data work.products; Product_Number = 5461; Item = '1001'; Item_Reference = Item'/'Product_Number; run; Which one of the following is the value of the variable…

The correct answer is D. The value can not be determined as the program fails to execute due to errors. See the full explanation below for the reasoning.

Question

The following SAS program is submitted:

data work.products; Product_Number = 5461; Item = '1001'; Item_Reference = Item'/'Product_Number; run; Which one of the following is the value of the variable ITEM_REFERENCE in the output data set?

Options

  • A1001/5461
  • B1001/ 5461
  • C. (missing numeric value)
  • DThe value can not be determined as the program fails to execute due to errors.

How the community answered

(65 responses)
  • A
    11% (7)
  • B
    5% (3)
  • C
    3% (2)
  • D
    82% (53)

Community Discussion

No community discussion yet for this question.

Full A00-211 Practice