Question : Consider the data step: Which of the following assignment statements for variable group are functionally equivalent to the original statement used in the above data step? 1. if Age not in(15,16) then Group=1; else Group=2; 2. if (Age NE 16) or (Age NE 15) then Group=1; else Group=2; 3. Access Mostly Uused Products by 50000+ Subscribers 4. both A or C will work
Question : The following SAS program is submitted: data WORK.ACCOUNTING; set WORK.DEPARTMENT; length EmpId $6; CharEmpid=EmpId; run; If data set WORK.DEPARTMENT has a numeric variable EmpId. Which statement is true about the output dataset?
Question : The following SAS program is submitted: data WORK.OUTDS; do until(Prod GT 6); Prod + 1; end; run; What is the value of the variable Prod in the output data set?