Question 66 :
In the following SAS program, the input data files are sorted by the NAMES variable:
libname temp 'SAS-data-library';
data temp.sales;
merge temp.sales
work.receipt;
by names;
run;
Which one of the following results occurs when this program is submitted?
- The program executes successfully and a temporary SAS data set is created.
- Get all Questions and Answer from here
- You need to have paid subscription to access all questions
- Thanks for considering SAS Certification Material
Correct Answer : 2
Exp : Both datasets sales and receipt are sorted by names variable which in turn is used to merge the two datasets. The resulting dataset is over-written on temp.sales dataset.
You can access to full explanation to question and answer from this page.