a****m 发帖数: 693 | 1 The data set WORK.REALESTATE has the variable LocalFee with a
format of 9. and a variable CountryFee with a format of 7.;
The following SAS program is submitted:
data WORK.FEE_STRUCTURE;
format LocalFee CountryFee percent7.2;
set WORK.REALESTAT;
LocalFee=LocalFee/100;
CountryFee=CountryFee/100;
run;
What are the formats of the variables LOCALFEE and COUNTRYFEE in the
output dataset?
A.
LocalFee has format of 9. and CountryFee has a format of 7.
B.
LocalFee ha... 阅读全帖 |
|
j*******9 发帖数: 27 | 2 20::The data set WORK.REALESTATE has the variable LocalFee with a
format of 9. and a variable CountryFee with a format of 7.;
The following SAS program is submitted:
data WORK.FEE_STRUCTURE;
format LocalFee CountryFee percent7.2;
set WORK.REALESTAT;
LocalFee=LocalFee/100;
CountryFee=CountryFee/100;
run;
What are the formats of the variables LOCALFEE and COUNTRYFEE in the output
dataset?
A.
LocalFee has format of 9. and CountryFee has a format of 7.
B.
LocalFe... 阅读全帖 |
|
p****8 发帖数: 50 | 3 sas base 70题第20,答案给D,可我认为应该是C。
请大家帮助斟酌一下。
Item 20 of 70 Mark item for review
The data set WORK.REALESTATE has the variable LocalFee with a
format of 9. and a variable CountryFee with a format of 7.;
The following SAS program is submitted:
data WORK.FEE_STRUCTURE;
format LocalFee CountryFee percent7.2;
set WORK.REALESTAT;
LocalFee=LocalFee/100;
CountryFee=CountryFee/100;
run;
What are the formats of the variables LOCALFEE and COUNTRYFEE in the output
dataset?
A.
L... 阅读全帖 |
|
x******n 发帖数: 92 | 4 I have a question about SAS Base
The data set WORK.REALESTATE has the variable LocalFee with a
format of 9. and a variable CountryFee with a format of 7.;
The following SAS program is submitted:
data WORK.FEE_STRUCTURE;
format LocalFee CountryFee percent7.2;
set WORK.REALESTAT;
LocalFee=LocalFee/100;
CountryFee=CountryFee/100;
run;
What are the formats of the variables LOCALFEE and COUNTRYFEE in the output
dataset?
A.LocalFee has format of 9. and CountryFee has a format o |
|
b******e 发帖数: 202 | 5 Thank you so much!
I have different answers for several questions. Let me know if I am wrong. I
will take the test soon.
Item 20 of 70 Mark item for review
The data set WORK.REALESTATE has the variable LocalFee with a
format of 9. and a variable CountryFee with a format of 7.;
The following SAS program is submitted:
data WORK.FEE_STRUCTURE;
format LocalFee CountryFee percent7.2;
set WORK.REALESTAT;
LocalFee=LocalFee/100;
CountryFee=CountryFee/100;
run;
What are the forma |
|