Practice for the SAS basic certification exam.
Rate this question:
The detail rows are ordered according to their formatted values.
You can't create summary reports.
PROC REPORT displays only the first occurrence of each order variable value in a set of rows that have the same value for all order variables,
All of the above
Rate this question:
SKIPLINE and FORMAT=
CENTER, HEADLINE, HEADSKIP, and either WIDTH=, SPACING=,or FORMAT=
SPACING= only
CENTER, FORMAT=, and HEADLINE
Rate this question:
Define style / center 'Style of/House'; define bedrooms / mean 'Average/Bedrooms'; define baths / max 'Maximum/Baths';
Define style / group; define bedrooms / mean 'Average/Bedrooms'; define baths / max 'Maximum/Baths';
Define style / order; define bedrooms / mean 'Average/Bedrooms'; define baths / max 'Maximum/Baths';
Define style / group; define bedrooms / 'Average/Bedrooms'; define baths /'Maximum/Baths';
Rate this question:
Proc report data=sasuser.houses nowd; column style bedrooms baths; define style / order; define bedbathratio / computed format=4.2; compute bedbathratio; bedbathratio=baths.sum/bedrooms.sum; endcomp; run;
Proc report data=sasuser.houses nowd; column style bedrooms baths BedBathRatio; define style / order; define bedbathratio / order format=4.2; compute bedbathratio; bedbathratio=baths.sum/bedrooms.sum; endcomp; run;
Proc report data=sasuser.houses nowd; column style bedrooms baths BedBathRatio; define style / order; define bedbathratio / computed format=4.2; compute bedbathratio; bedbathratio=baths.sum/bedrooms.sum; endcomp; run;
Proc report data=sasuser.houses nowd; column style bedrooms baths BedBathRatio; define style / order; define bedbathratio / computed format=4.2; compute bedbathratio; bedbathratio=baths/bedrooms; endcomp; run;
Rate this question:
A list report ordered by values of the first variable in the column statement
A summary report ordered by values of the first variable in the COLUMN statement
A list report that displays a row for each observation in the input data set and which calculates the SUM statistic for numeric variables
A list report that calculates the N (frequency) statistic for character variables
Rate this question:
Proc report data=sasuser.houses nowd; column style condo range split twostory price; define price / mean 'Average Price'; run;
Proc report data=sasuser.houses nowd; column style price; define style / group; define price / mean 'Average Price'; run;
Proc report data=sasuser.houses nowd; column style price; define style / across; define price / mean 'Average Price'; run;
Proc report data=sasuser.houses nowd; column style price; define style / across 'CONDO' 'RANCH' 'SPLIT' 'TWOSTORY'; define price / mean 'Average Price'; run;
Rate this question:
In the PROC REPORT window
As HTML and/or SAS listing output
Both of the above
Neither of the above
Rate this question:
You must specify the SPLIT= option in the PROC REPORT statement and use the split character in the column headings in DEFINE statements.
You must use the default split character in column headings in DEFINE statements.
You must specify either the width= or the SPACING= attribute in DEFINE statements.
These headings split this way by default.
Rate this question:
Your PROC REPORT step will not execute successfully.
You can produce only list reports.
You can order rows by specifying options in the PROC REPORT statement.
You can produce only summary reports.
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.