The following SAS program is submitted:data revenue;set year_1;var1 = mdy(1,15,1960);run;Which one of the following values does the variable named VAR1 contain?
The following SAS program is submitted:data work.new;mon = 3;day = 23;year = 2000;date = mdy(mon,day,year);run;Which one of the following is the value of the DATE variable?
The following SAS DATA step executes on Monday, April 25, 2000: data newstaff; set staff; start_date = today(); run;Which one of the following is the value of the variable START_DATE in the output data set?
The following SAS DATA step is submitted:data sasdata.atlantasasdata.bostonwork.portlandwork.phoenix;set company.prdsales;if region = 'NE' then output boston;if region = 'SE' then output atlanta;if region = 'SW' then output phoenix;if region = 'NW' then output portland;run;Which one of the following is true regarding the output data sets?
Which one of the following SAS DATA steps saves the temporary data set named MYDATA as a permanent data set?
The following SAS DATA step is submitted:libname temp 'SAS-data-library';data temp.report;set sasuser.houses;newvar = price * 1.04;run;Which one of the following statements is true regarding the program above?