Home / CSE MCQs / SAS :: Discussion

Discussion :: SAS

  1. How many variables would be in table "AV after executing the below SAS program?

    data AV;
        merge Employee Salary;
        by name;
        totsal + salary;
    run;
  2. A.
    3
    B.
    4
    C.
    5
    D.
    6

    View Answer

    Workspace

    Answer : Option B

    Explanation :



Be The First To Comment