Question 23: The following SAS program is submitted:

 data one;

 date = '04juI2014'd;

 format date weekdate.; run;

 proc print data = one; run;

 What output is generated?

  1. Obs date

 1 Monday, July 4, 2014

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

 Correct Answer : 1

 Exp : The WEEKDATEw. format writes SAS date values in the form day-of-week, month-name dd, yy (or yyyy), where dd is an integer that represents the day of the month.

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