Given the SAS data set WORK.ONE:What value will SAS assign to Total?
A SAS program is submitted and the following SAS log is produced:2 data gt100;3 set ia.airplanes4 if mpg gt 100 then output;22 202ERROR: File WORK.IF.DATA does not exist.ERROR: File WORK.MPG.DATA does not exist.ERROR: File WORK.GT.DATA does not exist.ERROR: File WORK.THEN.DATA does not exist.ERROR: File WORK.OUTPUT.DATA does not exist.ERROR 22-322: Syntax error, expecting one of the following: a name, a quoted string, (, ;, END, KEY, KEYS, NOBS, OPEN, POINT, _DATA_, _LAST_, _NULL_.ERROR 202-322: The option or parameter is not recognized and will be ignored.5 run;The IA libref was previously assigned in this SAS session.Which one of the following corrects the errors in the LOG?
The contents of the raw data file SIZE are listed below:--------10-------20-------3072 95The following SAS program is submitted:data test;infile 'size';input @1 height 2. @4 weight 2;run;Which one of the following is the value of the variable WEIGHT in the output data set?
A SAS PRINT procedure output of the WORK.LEVELS data set is listed below:Obs name level -1 Frank 12 Joan 23 Sui 24 Jose 35 Burt 46 Kelly .7 Juan 1The following SAS program is submitted:data work.expertise;set work.levels;if level = . thenexpertise = 'Unknown';else if level = 1 thenexpertise = 'Low';else if level = 2 or 3 thenexpertise = 'Medium';elseexpertise = 'High';run;Which of the following values does the variable EXPERTISE contain?
The contents of the raw data file EMPLOYEE are listed below:--------10-------20-------30Ruth 39 11 -Jose 32 22 -Sue 30 33 -John 40 44 -The following SAS program is submitted:data test;infile 'employee';input employee_name $ 1-4;if employee_name = 'Sue' then input age 7-8;else input idnum 10-11;run;Which one of the following values does the variable AGE contain when the name of the employee is "Sue"?
The following SAS program is submitted:libname sasdata 'SAS-data-library';data test;set sasdata.chemists;if jobcode = 'chem3'then description = 'Senior Chemist';else description = 'Unknown';run;A value for the variable JOBCODE is listed below:JOBCODE -CHEM3 -Which one of the following values does the variable DESCRIPTION contain?