Question: Use the data set called grades that is created by executing thisSAS program: DATA grades; do i = 1 to 100; id = i; grade
Use the data set calledgradesthat is created by executing thisSAS program:
DATA grades;
do i = 1 to 100;
id = i;
grade = int(100*ranuni(123)+1);
output;
end;
RUN;
1. Complete using SAS program that determines the percentage of people who are identified as having "Passed" or "Failed" when the cutoff for passing is having agradegreater than 70. As a result of running your program, you should obtain this output:

\f
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
