nerdexam
SAS_Institute

A00-201 · Question #12

12: The following SAS program is submitted: data work.staff; JobCategory = 'FA'; JobLevel = '1'; JobCategory = JobCategory || JobLevel; run; Which one of the following is the value of the variable…

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

Question

12: The following SAS program is submitted: data work.staff; JobCategory = 'FA'; JobLevel = '1'; JobCategory = JobCategory || JobLevel; run; Which one of the following is the value of the variable JOBCATEGORY in the output data set?

Options

  • AFA
  • BFA1
  • CFA 1
  • D' ' (missing character value)

How the community answered

(22 responses)
  • A
    18% (4)
  • B
    73% (16)
  • C
    5% (1)
  • D
    5% (1)

Community Discussion

No community discussion yet for this question.

Full A00-201 Practice