Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Q24

The following SAS program is submitted:

data work.passengers;
if OrigPassengers = . then OrigPassengers = 100;
TransPassengers = 100;
OrigPassengers = .;
NonPaying = 10;
TotalPassengers = sum (OrigPassengers, TransPassengers);
run;

Which one of the following is the value of the TOTALPASSENGERS variable in the output data set?

A. 100
B. 110
C. 200
D. . (missing numeric value)



This post first appeared on SAS Certification Questions, please read the originial post: here

Subscribe to Sas Certification Questions

Get updates delivered right to your inbox!

Thank you for your subscription

×