Use SAS On Demand and turn in your program summary of the SAS script. You will need the following libname statement.

LIBNAME STAT408 "/courses/d716b355ba27fe300";

Q1. (15 points)

a. Access SAS (5 points)

Access the titanic dataset, create and print a dataset with only the first class females.

b. Proc SQL (5 points)

Access the titanic dataset, create and print a dataset with only the first class females using Proc SQL code.

c. Average Age (5 points)

Compute the average age of passengers surviving the Titanic crash. This can be done using data steps and Proc Means or by using Proc SQL.