programming languages Online Quiz - 121
Description: programming languages Online Quiz - 121 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
PROC SORT data = lib.temp out = temp2; By subjid; Run; In which library temp2 is made?
options obs = 500; Data TEMP; Set test(firstobs = 75); Run; What will be the number of observations in temp dataset?
PROC SORT data = temp out=new; BY JOBCODE Descending SALARY; RUN; Temp DATASET What will be the output??
data temp; test = ‘X’; select(test); when(‘Y’) Name = ‘Ank’; when(‘X’) Name = ‘Ankur’; when(‘Z’) Name = ‘ ’; end; run; What is the output?
data null; put ‘test’; run; Where will the ouput(test) be written?
1----5----10--- (data in file ‘asa’) 03132000 data temp; infile ‘asa’; input date : MMDDYY10.; run; What will be stored in date?
data test; dat = '13MAR2000'd; format dat WEEKDATE.; run; What will be the value of dat in output dataset?
data temp; set x; run; “missing code” data test; set y; run; What will be the missing code to reset the page number ?
libname temp ‘abc.sds.as’; data temp.X1; set sasuser.X2; run; Which is the correct statement??
What informat should be used to read the date variable in the flat file having the values like 02NOV2003?