SAS_Institute
A00-201 · Question #65
The SAS data set BANKS is listed below: BANKS name rate FirstCapital 0.0718 DirectBank 0.0721 VirtualDirect 0.0728 The following SAS program is submitted: data newbank; do year = 1 to 3; set banks…
The correct answer is B. 1 observations and 4 variables. See the full explanation below for the reasoning.
Question
The SAS data set BANKS is listed below:
BANKS
name rate
FirstCapital 0.0718
DirectBank 0.0721
VirtualDirect 0.0728
The following SAS program is submitted:
data newbank;
do year = 1 to 3;
set banks;
capital + 5000;
end;
run;
Which one of the following represents how many observations and variables will exist in the SAS data set NEWBANK?
Options
- A0 observations and 0 variables
- B1 observations and 4 variables
- C3 observations and 3 variables
- D9 observations and 2 variables
How the community answered
(51 responses)- A4% (2)
- B73% (37)
- C16% (8)
- D8% (4)
Community Discussion
No community discussion yet for this question.