SAS Certified Base Programmer 50 Questions (7)
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?
a. where hire_date='23feb2000'd;
b. where hire_date='23feb2000';
c. where hire_date='02/23/2000'd;
d. where hire_date='02/23/2000';
Topics:
SAS Base Questions |
2 Comments »
A
I also belive in A