Sciences
8 QUESTIONS
Q1. If I want to assign a label to 3 fields, (on, changed, flight ), print a date, and print records only…
A) Var on changed flight; where on>=219;
B) Var date on changed flight; where changed>3;
C) Var boarded transferred flight; label boarded='on' transferred='changed'; where flight=219;
D) Var date on changed flight; where flight=219;
Q2. If labels are NOT stored with the data, which can be used to make the field names prettier?
A) Proc print data=mylib. crap label;label field1='Field1' field2='Field2';
B) Roc print data=mylib. crap;label field1='Field1' field2='Field2';
C) Roc print data=mylib. crap label;run;
D) Roc print data mylib. crap label;label field1='Field1' field2='Field2';
Q3. Which selects ONLY those that have style equal to ranch, split or twostory?
A) Where style='ranch' or 'split' or 'twostory';
B) Where style in 'ranch' or 'split' or 'twostory';
C) Where style in (Ranch, Split, Twostory);
D) Where style in('ranch', 'split', 'twostory');