Question 19: 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?

  1. 14
  2. Get all Questions and Answer from here
  3. You need to have paid subscription to access all questions
  4. Thanks for considering Python Certification Material

 Correct Answer : 1

 Exp: The MDY function creates a SAS date value from numeric values that represent the month, day, and year.

 For SAS certification we need to assume that YEARCUTOFF option is set to 1JAN1960. This date is represented as 0 in SAS date format. Now MDY function will change normal date to SAS

You can access to full explanation to question and answer from this page.