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)- A8% (4)
- B14% (7)
- C4% (2)
- D75% (38)
Community Discussion
No community discussion yet for this question.