A00-201 Actualtests
com - The Pow er of Know ing QUESTION 1 In the following SAS program, the input data files are sorted by the NAMES variable: libnametemp '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
The program executes successfully and a permanent SAS data set is created
The program fails execution because the same SAS data set is referenced for both read and write operations
The program fails execution because the SAS data sets on the MERGE statement are in two different libraries
Answer: B QUESTION 2 When the following SAS program is submitted, the data set SASDATA
PRDSALES c