Free A00-212 Exam Braindumps (page: 13)

Page 12 of 47

Which of the following is true about the COMPRESS=YES data set option?

  1. It is most effective with numeric data that represents large numeric values
  2. It is most effective with character data that contains patterns, rather than simple repetitions
  3. It uses the Ross Data Compression method to compress numeric data
  4. It is most effective with character data that contains repeated characters

Answer(s): D



The following SAS program is submitted:

data new;
do i=1,2,3
nextfile=compress('March' || |);
infile abc filevar=nextfile
end=eof;
do until (eof);
input dept $sales;
end;
run;

What is the purpose of the FILEVAR=option on the INFILE statement?

  1. It names the variable NEXTFILE, whose value is output to the SAS data set NEW
  2. It names the variable NEXTFILE, whose values point to an aggregate storage location
  3. It names the variable NEXTFILE, whose value is a SAS file reference
  4. It names the variable NEXTFILE, whose change in value causes in INFILE statement to open a new input file

Answer(s): D



The following SAS program is submitted:

%micro cols1;
name age;
%mend;
%macro cols2;
height weight
%mend
proc print data=sashelp.class;
<insert VAR statement here>
Run

Which VAR statement successfully completes the program and produces a report?

  1. var heigh %cols1;
  2. var %cols1 %cols2 height;
  3. var %cols1 height;
  4. var %cols2 %cols1;

Answer(s): A



The following SAS program is submitted:

data new(bufsize = 6144 bufno = 4);
set old;
run;

What is the difference between the usage of BUFFSIZE= and BUFNO= options?

  1. BUFSIZE=specifies the size of the output buffer in kilobytes; BUFNO=specifies the number of output buffers
  2. BUFSIZE= specifies the size of the input buffer in bytes; BUFFNO= specifies the number of input buffers
  3. BUFSIZE= specifies the size of the input buffer in kilobytes; BUFNO=specifies the number of input buffers
  4. BUFSIZE= specifies the size of the output buffer in bytes; BUFNO= specifies the number of output buffers

Answer(s): D






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

A00-212 Discussions & Posts