SAS_Institute
A00-280 · Question #24
Given the SAS data set WORK.VS1: Subject _Name_ Visit1 Visit2 Visit3 Visit4 Visit5 101 SBP 160 150 . 130 120 The following SAS program is submitted: data WORK.VS2; set WORK.VS1; Total=mean(of…
The correct answer is B. 112. See the full explanation below for the reasoning.
Question
Given the SAS data set WORK.VS1:
Subject Name Visit1 Visit2 Visit3 Visit4 Visit5
101 SBP 160 150 . 130 120
The following SAS program is submitted:
data WORK.VS2;
set WORK.VS1;
Total=mean(of Visit1:);
run;
Which value will be assigned to variable TOTAL?
Options
- Amissing
- B112
- C140
How the community answered
(17 responses)- A18% (3)
- B76% (13)
- C6% (1)
Community Discussion
No community discussion yet for this question.