nerdexam
SAS_Institute

A00-211 · Question #207

The following SAS program is submitted: data work.passengers; if OrigPassengers = then OrigPassengers = 100; TransPassengers = 100; OrigPassengers = TotalPassengers = sum (OrigPassengers…

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

Question

The following SAS program is submitted:

data work.passengers; if OrigPassengers = then OrigPassengers = 100; TransPassengers = 100; OrigPassengers = TotalPassengers = sum (OrigPassengers, TransPassengers) +0; run; What is the value of the TOTALPASSENGERS variable in the output data set?

Options

  • A0
  • B100
  • C200
  • D(missing numeric value)

How the community answered

(23 responses)
  • A
    4% (1)
  • B
    78% (18)
  • C
    13% (3)
  • D
    4% (1)

Community Discussion

No community discussion yet for this question.

Full A00-211 Practice