Exam A00-212 All QuestionsBrowse all questions from this exam
Question 16

SIMULATION -

The question will ask you to provide a segment of missing code.

The following SAS program is submitted:

The text box above, complete the %PUT statement to produce the following log output:

Case is ignored and standard SAS syntax rules apply.

    Correct Answer:

    To produce the log output showing the values of the global macro variables ZXC, ASD, and QWE, your %PUT statement needs to be as follows: %put GLOBAL ZXC &zxc; %put GLOBAL ASD &asd; %put GLOBAL QWE &qwe;. This will output the required log information, displaying the values assigned to these global variables.

Discussion
mhminkov

_user_