Home / CSE MCQs / SAS :: Discussion

Discussion :: SAS

  1. The following SAS program is submitted:
    libname rawdata1 'location of SAS data library';
    filename rawdata2 'location of raw data file';
    data work.testdata;
    infile
    input sales1 sales2;
    run;

    Which one of the following is needed to complete the program correctly?
  2. A.
    rawdata1
    B.
    rawdata2
    C.
    'rawdata1'
    D.
    'rawdata2'

    View Answer

    Workspace

    Answer : Option B

    Explanation :



Be The First To Comment