Question 21

Which statement is true regarding a DATA step concatenation?
  • Question 22

    What is the result of submitting the program below?
    proc contents data=revenue;
    run;
  • Question 23

    When the following code is submitted, execution fails.

    Why does the execution fail?
  • Question 24

    Given the input data sets EMPLOYEES and DONATIONS, and the output data set NODONATIONS below:

  • Question 25

    What happens when you submit the code shown below?
    data table1 table2;
    set sashelp.shoes;
    output;
    run;