Question 62 raw data file is listed below.

 1---+----10---+----20---+---

 10

 23

 20

 15

 The following program is submitted:

 data all_sales;

 infile 'file-specification';

 input receipts;

 (insert statement(s) here)

 run;

 Which statement(s) complete(s) the program and produce(s) a running total of the Receipts variable?

 

  1. total+receipts;
  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

 Ans :1

 Exp : The SUM function and the assignment statement do not retain values across iterations of the DATA step. The sum statement total+receipts; initializes total to 0, ignores missing

 values of receipt, retains the value of total from one iteration to the next, and adds the value of receipts to total.

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