nerdexam
SAS_Institute

A00-212 · Question #73

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 = %str(research%&development);
  • C%let dept = %nrstr(research&development);
  • D%let dept = %nrstr(research%&development);

How the community answered

(67 responses)
  • A
    13% (9)
  • B
    6% (4)
  • C
    78% (52)
  • D
    3% (2)

Community Discussion

No community discussion yet for this question.

Full A00-212 Practice