Question 51 : The following SAS program is submitted:

 data newstaff;

 set staff;

 (insert WHERE statement here)

 run;

 Which one of the following WHERE statements completes the program and selects only observations with a Hire_date of February 23,2000?

  1. where hire_date='23feb2000'd;
  2. Get all Questions and Answer from here
  3. You need to have paid subscription to access all questions
  4. Thanks for considering SAS Certification Material

 Ans : 1

 Exp : A SAS date constant must take the form of one- or two-digit day, three-digit month, and two- or four-digit year, enclosed in quotation marks and followed by a d

 ('ddmmmyy(yy)'d).

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