Item 30 of 63 Mark item for review
The following SAS program is submitted:
%let product=merchandise;
[_insert_%put_statement_]
and the following message is written to the SAS log:
the value is "merchandise"
Which macro statement wrote this message?
A.
%put the value is '"'&product.'"';
B.
%put the value is %quote(&product.);
C.
%put the value is "&product.";
D.
%put the value is ""&product."";