Exam : A00-211 SAS Base Programming for SAS (r) 9

2.85 %

Question # (7/246) Next   Previous

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?
A. Length is 14; value is `214 London Dri'.
B. Length is 14; value is `214 London Way'.
C. Length is 16; value is `214 London Drive'.
D. Length is 200; value is `214 London Drive'.