Explanation: The FILE= option identifies the file that contains the HTML output. The FILE= option is an alias for the BODY= option in the ODS HTML statement.
Question : 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? 1. _DROP_ 2. _TEMP_ 3. Access Mostly Uused Products by 50000+ Subscribers 4. Noextratextisneeded
Explanation: _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.
Question : A raw data file is listed below.
1---+----10---+----20---+--- 01/05/1989 Frank 11 12/25/1987 June 13 01/05/1991 Sally 9 The following SAS program is submitted using the raw data file as input:
data work.family; infile 'file-specification'; input @1 date_of_birth mmddyy10. @15 first_name $5. @25 age 3; run;
proc print data=work.family noobs; run; Which one of the following is the result?
1. The program executes, but the age values are missing in the output. 2. The program executes, but the date values are missing in the output. 3. Access Mostly Uused Products by 50000+ Subscribers 4. The program fails to execute because the date informat is coded incorrectly.
Explanation: Values for the variable age are missing in the output because the informat for age is coded incorrectly. Since age is standard numeric input, it should use the w.d informat to specify a field width of 3 in the INPUT statement. 3 did not write about
1. It can be used to read character variables that contain embedded blanks 2. No placeholder is required for missing data. 3. Access Mostly Uused Products by 50000+ Subscribers 4. Fields do not have to be separated by blanks or other delimiters