SAS_Institute
A00-202 · Question #3
The following SAS program is submitted: <insert statement here>; %let development = ontime; proc print data = sasuser.highway; title "For &dept"; title2 "This project was completed &development"…
The correct answer is C. %let dept = %nrstr(research&development). See the full explanation below for the reasoning.
Question
The following SAS program is submitted:
<insert statement here>; %let development = ontime; proc print data = sasuser.highway; title "For &dept"; title2 "This project was completed &development"; run; Which one of the following statements completes the above and resolves title1 to "For research&development"?
Options
- A%let dept = %str(research&development);
- B%let dept = %nrstr(research%&development);
- C%let dept = %nrstr(research&development);
- D%let dept = %str(research%&development);
How the community answered
(24 responses)- A13% (3)
- B4% (1)
- C79% (19)
- D4% (1)
Community Discussion
No community discussion yet for this question.