nerdexam
SAS_Institute

A00-211 · Question #85

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 A. FA. See the full explanation below for the reasoning.

Question

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

(19 responses)
  • A
    84% (16)
  • B
    5% (1)
  • C
    11% (2)

Community Discussion

No community discussion yet for this question.

Full A00-211 Practice