Questions Related to technology

Multiple choice technology programming languages
  1. Analysis Variable: Salary; Classification variable: Gender; Statistics: Mean

  2. Analysis Variable: Gender; Classification variable: Salary; Statistics: Mean

  3. Analysis Variable: Salary; Classification variable: Mean; Statistics: Salary

  4. Analysis Variable: Mean; Classification variable: Salary; Statistics: Mean

Reveal answer Fill a bubble to check yourself
A Correct answer
Multiple choice technology programming languages
  1. Use the CLASS Statement when number of observation >10000

  2. Use the By Statement when number of observation <1000

  3. Using the BY Statement requires that the input data set be sorted by the values of the classification variables

  4. Using the CLASS Statement requires that the input data set be sorted by the values of the classification variables

Reveal answer Fill a bubble to check yourself
C Correct answer
Multiple choice technology programming languages
  1. PROC MEANS DATA= ORGANIZATION SUM MEAN ; CLASS REGION; VAR TOTREV / MISSING; run;

  2. PROC MEANS DATA= ORGANIZATION SUM MEAN MAXDEC=0 NMISS; CLASS REGION; VAR TOTREV; run;

  3. PROC MEANS DATA= ORGANIZATION SUM MEAN MAXDEC=0 if not MISSING; CLASS REGION; VAR TOTREV; run;

  4. PROC MEANS DATA= ORGANIZATION SUM MEAN MAXDEC=0 MISSING; CLASS REGION; VAR TOTREV; run;

Reveal answer Fill a bubble to check yourself
D Correct answer
Multiple choice technology programming languages
  1. PROC MEANS DATA= ORGANIZATION ; CLASS REGION; VAR TOTREV ; run;

  2. PROC MEANS DATA= ORGANIZATION SUM MEAN MAXDEC=0 ; CLASS REGION; VAR TOTREV ; run;

  3. PROC MEANS DATA= ORGANIZATION SUM MEAN MAXDEC=0 ; BY REGION; CLASS TOTREV ; run;

  4. PROC MEANS DATA= ORGANIZATION SUM MEAN MAXDEC=0 ; CLASS North_Region; VAR TOTREV ; run;

Reveal answer Fill a bubble to check yourself
B Correct answer