Question 90: 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?
- a character string with the value '23mar2000'
- Get all Questions and Answer from here
- You need to have paid subscription to access all questions
- Thanks for considering Python Certification Material
Correct Answer : 3
Exp: mdy creates only SAS date value
so the Ans is:
You can access to full explanation to question and answer from this page.