Free A00-280 Exam Braindumps (page: 2)

Page 1 of 25

Given the following data at WORK DEMO:



Which SAS program prints only the first 5 males in this order from the data set?

  1. proc sort data=WORK.DEMO out=out;
    by sex;
    run;
    proc print data= out (obs=5);
    run;
  2. proc print data=WORK.DEMO(obs=5);
    where Sex='M';
    run;
  3. proc print data=WORK.DEMO(where=(sex='M'));
    where obs<=5;
    run;
  4. proc sort data=WORK.DEMO out=out;
    by sex descending;
    run;
    proc print data= out (obs=5);
    run;

Answer(s): B



Which SAS program will apply the data set label 'Demographics' to the data set named DEMO?

  1. data demo (label='Demographics');
    set demo;
    run;
  2. data demo;
    set demo (label='Demographics');
    run;
  3. data demo (label 'Demographics');
    set demo;
    run;
  4. data demo;
    set demo;
    label demo= 'Demographics';
    run;

Answer(s): A



The following SAS program is submitted:

proc sort data=SASUSER.VISIT out=PSORT;
by code descending date cost;
run;

Which statement is true regarding the submitted program?

  1. The descending option applies to the variable CODE.
  2. The variable CODE is sorted by ascending order.
  3. The PSORT data set is stored in the SASUSER library.
  4. The descending option applies to the DATE and COST variables.

Answer(s): B



What information can be found in the SAS Dictionary tables? (Choose two.)

  1. datasets contained within a specified library
  2. values contained within a specified format
  3. variables contained within a specified dataset
  4. values contained within a specified variable

Answer(s): A,C






Post your Comments and Discuss SAS Institute A00-280 exam with other Community members:

A00-280 Exam Discussions & Posts