How many statements are In the program shown below?

In the provided program, there are six distinct SAS statements:
data FemaleStudents; - Data step beginning
set sashelp.Class; - Set statement
where Sex='F'; - Where statement
Classroom='Red Room'; - Assignment statement
run; - Run statement to execute the data step
title 'Female Students in Red Room'; - Title statement
Note that the proc print and the second run; statement are part of another PROC step to print the results and hence are not counted in this particular count. The final title; statement is used to clear the title setting and does not count as part of the program statements being asked about.
SAS 9.4 Language Reference: Concepts, 'DATA Step'
SAS documentation on 'TITLE Statement'
Gaynell
12 days agoAyesha
17 days agoShawnta
22 days agoDorathy
27 days agoNieves
1 month agoChanel
1 month agoBritt
1 month ago