Question 241
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?
Question 242
Given the SAS data set WORK.ONE:
And the SAS data set WORK.TWO: The following program is submitted:

What is the first observation in the SAS data set WORK.BOTH?
