Question 38 :

 A raw data file is listed below:

 --------10-------20-------30

 1901 2

 1905 1

 1910 6

 1925 .

 1941 1

 The following SAS program is submitted and references the raw data file above:

 data coins;

 infile 'file-specification';

 input year quantity;

 run;

 Which one of the following completes the program and produces a non-missing value for the variable TOTQUANTITY in the last

 observation of the output data set?

 

  1. totquantity + quantity;
  2. Get all Questions and Answer from here
  3. You need to have paid subscription to access all questions
  4. Thanks for considering SAS Certification Material

 Correct Answer : 1

 Exp : data aa;

 x=.;

 y=3;

 z= x+y;

 run;

 z is missing.

 Missing Values: When Missing Values are Generated by SAS

 Expression cannot ignore missing value, but the SUM function and statement can.

You can access to full explanation to question and answer from this page.