Question 236
Given the contents of the raw data file TYPECOLOR:
----I----10---I----20---I----30
Daisyyellow
The following SAS program is submitted:
data flowers;
infile 'typecolor';
input type$ 1-5+1 color$;
run;
What are the values of the variables TYPE and COLOR?
Question 237
The following SAS program is submitted:
How will the Exam variable value be displayed in the FREQ procedure output?
Question 238
Which ODS statement option terminates output being written to an HTML rile?
Question 239
The contents of the raw data file PRODUCT are listed below:
--------10-------20-------30
24613 $25.31
The following SAS program is submitted:
data inventory;
infile 'product';
input idnum 5. @10 price;
run;
Which one of the following is the value of the PRICE variable?
Question 240
Which one of the following is true of the SUM statement in a SAS DATA step program?
