SAS Practice Exam Free -40 Questions Test | Mockzoo
SAS Base Programmer Certification Practice Test
Question 1 of 40
90:00
Question 1 of 40
DATA Step Processing
Consider the following SAS code:
```
data work.employees;
input Name $ Age Department $;
datalines;
John 42 Sales
Mary 35 IT
Peter 29 HR
Susan 31 IT
;
run;
```
How many observations will be created in the work.employees data set?