Practice for the SAS basic certification exam.
Median
Range
Standard deviation
Standard error of the mean
Rate this question:
By boarded transfer deplane;
Class boarded transfer deplane;
Output boarded transfer deplane;
Var boarded transfer deplane;
Rate this question:
IDnum
Age
Height
Weight
Rate this question:
BY variables must be either indexed or sorted.
Summary statistics are computed for BY variables.
BY group processing is preferred when you are categorizing data that contains few variables.
BY group processing overwrites your data set with newly grouped observations.
Rate this question:
Class sex survive;
Class survive sex;
By sex survive;
By survive sex;
Rate this question:
Proc means data=clinic.diabetes; var age height weight; class sex; output out=work.sum_gender mean=AvgAge AvgHeight AvgWeight; run;
Proc summary data=clinic.diabetes print; var age height weight; class sex; output out=work.sum_gender mean=AvgAge AvgHeight AvgWeight; run;
Proc means data=clinic.diabetes noprint; var age height weight; class sex; output out=work.sum_gender mean=AvgAge AvgHeight AvgWeight; run;
Both a and b.
Rate this question:
Character variables
Numeric variables
Both character and numeric variables
None: variables must always be specified
Rate this question:
Continuous values.
Numeric values.
Categorical values.
Unique values.
Rate this question:
Proc freq data=clinic.diabetes; tables height weight; format height htfmt. weight wtfmt.; run;
Proc freq data-clinic.diabetes; tables weight height; format weight wtfmt. height htfmt.; run;
Proc freq data=clinic.diabetes; tables height*weight; format height htfmt. weight wtfmt.; run;
Proc freq data=clinic.diabetes; tables weight*height; format weight wtfmt. height htfmt.; run;
Rate this question:
Proc freq data=clinic.diabetes; tables sex weight / list; format weight wtfmt.; run;
Proc freq data=clinic.diabetes; tables sex*weight / nocol; format weight wtfmt.; run;
Proc freq data=clinic.diabetes; tables sex weight / norow nocol; format weight wtfmt.; run;
Proc freq data=clinic.diabetes; tables sex*weight / nofreq norow nocol; format weight wtfmt.; run;
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.