Practice for the SAS advance certification exam
The PROC SQL statement
An OPTIONS statement.
A SELECT statement.
The OPTIONS procedure.
Rate this question:
OUTOBS=
INOBS=
OBS=
None of the above
Rate this question:
proc sql nonumber outobs=10; select * from sasuser.flightattendants where jobcode='FA1'; select * from sasuser.flightattendants where jobcode='FA2';
proc sql number; select * from sasuser.flightattendants where jobcode='FA1'; reset nonumber outobs=10; select * from sasuser.flightattendants where jobcode='FA2';
proc sql nonumber; select * from sasuser.flightattendants where jobcode='FA1'; reset number outobs=10; select * from sasuser.flightattendants where jobcode='FA2';
proc sql; select * from sasuser.flightattendants where jobcode='FA1'; reset outobs=10; select * from sasuser.flightattendants where jobcode='FA2';
Rate this question:
NUMBER | NONUMBER
DOUBLE | NODOUBLE
FLOW | NOFLOW | FLOW=n | FLOW=n m
B and c
Rate this question:
The STIMER option in PROC SQL writes timing information for each statement to the SAS log.
The STIMER option in PROC SQL writes only cumulative timing information for the entire procedure to the SAS log.
When using the STIMER option in PROC SQL, the SAS system option STIMER must also be in effect.
A and c
Rate this question:
Information about SAS data libraries.
Information about SAS data sets.
Information about SAS macros.
All of the above
Rate this question:
Created each time they are referenced in a SAS program.
Updated automatically.
Limited to read-only access.
All of the above
Rate this question:
By running a PROC SQL query against the table, using the Dictionary libref.
By referring to the PROC SQL view of the table that is stored in the Sashelp library.
By referring to the PROC SQL view of the table that is stored in the Sasuser library.
A and b
Rate this question:
proc sql; describe dictionary.titles;
proc sql; describe table dictionary.titles;
proc sql describe table dictionary.titles;
proc sql describe dictionary titles;
Rate this question:
proc sql; select memname, modate, nvar, nobs from dictionary.tables where libname='SASUSER';
proc sql; select memname, modate, nvar, nobs from dictionary.tables where libname='Sasuser';
proc sql; select memname, modate, nvar, nobs from 'SASUSER' where table=dictionary.tables;
proc sql; select SASUSER from dictionary.tables where cols= 'memname, modate, nvar, nobs';
Rate this question:
Quiz Review Timeline +
Our quizzes are rigorously reviewed, monitored and continuously updated by our expert board to maintain accuracy, relevance, and timeliness.
Wait!
Here's an interesting quiz for you.