Hello,
Below is a specific question from A00-232 practice exam located here https://learn.sas.com/course/view.php?id=9
(I might assume that there are different practice test versions for different users)
"Use SAS dictionary tables, run a PROC SQL query to create a macro variable named COL_LIST which contains a comma separated list of the columns contained in the CERT.AIR10 data set"
i) Per SAS, the correct answer is: DATE, AIR << with a comma + space delimiter
>>> select name into :col_list separated by ', '
ii) If we are indeed using a comma separated list, then the correct answer is: DATE,AIR << with a comma delimiter ONLY
>>> select name into :col_list separated by ','
I answered as in ii) but it was marked incorrect.
Not an issue on a practice exam but it might be an issue on the actual exam.
Any observations on my assessment?
many thanks
You are right. Hopefully they QC the questions on the actual exam better.
Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 16. Read more here about why you should contribute and what is in it for you!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.