Quiz title : Reading SAS Data Sets
Question 1 of 10



If you submit the following program, which variables appear in the new data set?

data work.cardiac(drop=age group);
    set clinic.fitness(keep=age weight group);
    if group=2 and age>40;
run;