nerdexam
SAS_Institute

A00-211 · Question #134

The following SAS program is submitted: data one; addressl = 214 London Way'; run; data one; set one; address = tranwrd(address1, Way', `Drive'); run; What are the length and value of the variable…

The correct answer is D. Length is 200; value is `214 London Drive'. See the full explanation below for the reasoning.

Question

The following SAS program is submitted:

data one; addressl = 214 London Way'; run; data one; set one; address = tranwrd(address1, Way', `Drive'); run; What are the length and value of the variable ADDRESS?

Options

  • ALength is 14; value is `214 London Dri'.
  • BLength is 14; value is `214 London Way'.
  • CLength is 16; value is `214 London Drive'.
  • DLength is 200; value is `214 London Drive'.

How the community answered

(51 responses)
  • A
    8% (4)
  • B
    14% (7)
  • C
    4% (2)
  • D
    75% (38)

Community Discussion

No community discussion yet for this question.

Full A00-211 Practice