Which DATA step program produced the above log output?

Given the following log output:

– NOTE: The WHERE data set option on the DATA statement is not supported with DATA step in Cloud Analytic Services.

– NOTE: Could not execute DATA step code in Cloud Analytic Services. Running DATA step in the SAS client.

– NOTE: There were 19 observations read from the data set CASUSER.CLASS.

– NOTE: The data set CASUSER.CLASS2 has 1 observations and 5 variables.

Which DATA step program produced the above log output?
A . options msglevel=n;
data casuser.class2(where=(Age>15));
   set casuser.class;
run;
B . options msglevel=verbose;
data casuser.class2(where=(Age>15));
   set casuser.class;
run;
C . options msglevel=i;
data casuser.class2(where=(Age>15));
   set casuser.class;
run;

D . data casuser.class2(where=(Age>15));
   set casuser.class;
run;

Answer: C

Latest A00-415 Dumps Valid Version with 250 Q&As

Latest And Valid Q&A | Instant Download | Once Fail, Full Refund

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments