READ Free Dumps For SAS Institute- A00-211
Question ID 20366 | Given the SAS data set WORK.ONE: The following SAS program is submitted: The data set WORK.TWO is created, where Day would be 1 for Sunday, 2 for Monday, 3 for Tuesday, ... : Which expression successfully completed the program and creates the variable DAY? |
Option A | day(BeginDate) |
Option B | weekday(BeginDate) |
Option C | dayofweek(BeginDate) |
Option D | getday(BeginDate,today()) |
Correct Answer | B |
Question ID 20367 | The Excel workbook QTR1.XLS contains the followingthree worksheets: |
Option A | libname qtrdata 'qtr1.xls'; |
Option B | libname 'qtr1.xls' sheets=3; |
Option C | libname jan feb mar 'qtr1.xls'; |
Option D | libname mydata 'qtr1.xls' WORK.sheets=(jan,feb,mar); |
Correct Answer | A |