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?
Mandar77
2 years, 5 months agoKleinstone
3 years, 10 months agoKleinstone
3 years, 10 months ago