The following SAS FORMAT procedure is submitted: proc format lib = sasuser; value tempc low < 0 = 'BELOW FREEZING' 0 < 5 = 'COLD' 5 < 10 = 'MILD' 10 < 15 = 'WARM' 15 high = 'HOT'; run; How is the value 10 displayed when the format TEMPC is applied?
The following SAS program is submitted: data temp; array points{3,2}_temporary_ (10,20,30,40,50,60); score = points{2,1} run; Which one of the following is the value of the variable SCORE in the data set TEMP?
Following SAS program is submitted: data temp(<insert option here>); infile 'rawdata'; input x $ y z; run; RAWDATA is a file reference to an external file that is ordered by the variable X. Which option specifies how the data in the SAS data set TEMP will be sorted?