Select the best answer
for each question. Check your answers using the answer key in the
appendix.
-
Which of the following
can you use to position the input pointer on a specific record?
-
Which pointer control
is used to read multiple records sequentially?
-
Which pointer control
can be used to read records non-sequentially?
-
Which SAS statement
correctly reads the values for Fname, Lname, Address, City, State,
and Zip in order?
-
input Fname $ Lname $ /
Address $20. /
City $ State $ Zip $;
-
input Fname $ Lname $ /; Address ...