Question 14 : The following SAS program is submitted:
data work.test;
set sasuser.class;
array t{3}
(insert text here)
(5, 10, 15);
run;
Which one of the following completes the ARRAY statement and creates data elements that are not included in the SAS data set Work.Test?
- _DROP_
- 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 : 3
Exp : _TEMPORARY_ is a keyword used in the ARRAY statement to create temporary data elements. By default, the ARRAY statement creates new data set variables or references existing
variables for use by the array.
You can access to full explanation to question and answer from this page.