由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - 这sas BASE 考试很坑爹..
相关主题
请教SAS BASE的一个题目请教sas123题中第59题。
请教两道BASE题,关于if then的再次请教 SAS ADV 题
Base 123 中的问题(已考古,没有历史资料)Sas base Question
有关连接符的一道题问一个SAS code的问题
请教一个base 123的问题,先谢谢大家了!!能问一个A00-201里的59题吗?
请教sas adv的题SAS base 50题第29题求解惑
求助一道SAS advanced题目请问一道sas base的题
请教一个123题的题目[合集] 刚过了Advanced SAS
相关话题的讨论汇总
话题: sas话题: data话题: ranch话题: following
进入Statistics版参与讨论
1 (共1页)
o*******w
发帖数: 2310
1
很多都是故意弄陷阱,治马虎人.
很象国内的某些人出的,估计是华人出的.
当然,很有必要.
例子: The following SAS program is submitted:
data employees;
infile 'file-specification';
input @1 name $10.
@15 date date9
@25 department $;
run;
How many numeric variables are created?
a. 0
b. 1
c. 2
d. 3
data work.staff;
JobCategory = 'FA';
JobLevel = '1';
JobCategory = JobCategory || JobLevel;
run;
Which one of the following is the value of the variable JOBCATEGORY in the output data set?
A. FA
B. FA1
C. FA 1
D. ' ' (missing character value)
answer c,a
o*******w
发帖数: 2310
2
data work.one;
x = 3;
y = 2;
z = x ** y;
run;
Which one of the following is the value of the variable Z in the output data
set?
A. 6
B. 9
C. . (missing numeric value)
D. The program fails to execute due to errors.

【在 o*******w 的大作中提到】
: 很多都是故意弄陷阱,治马虎人.
: 很象国内的某些人出的,估计是华人出的.
: 当然,很有必要.
: 例子: The following SAS program is submitted:
: data employees;
: infile 'file-specification';
: input @1 name $10.
: @15 date date9
: @25 department $;
: run;

o*******w
发帖数: 2310
3
The contents of the SAS data set named PERM.STUDENTS are listed below:
name age
Alfred 14
Alice 13
Barbara 13
Carol 14
The following SAS program is submitted using the PERM.STUDENTS data set as
input:
libname perm 'SAS-data-library';
data students;
set perm.students;
file 'file-specification';
put name $15. @5 age 2.;
run;
Which one of the following represents the values written to the output raw
data file?
A. --------10-------20-------30
Alfred 14
Alice 13
Barbara 13
Carol 14
B. --------10-------20-------30
Alfr14
Alic13
Barb13a
Caro14
C. --------10-------20-------30
Alfr14ed
Alic13e
Barb13ara
Caro14l
D. --------10-------20-------30
Alfred 14
Alice 13
Barbara 13
Carol 14

【在 o*******w 的大作中提到】
: 很多都是故意弄陷阱,治马虎人.
: 很象国内的某些人出的,估计是华人出的.
: 当然,很有必要.
: 例子: The following SAS program is submitted:
: data employees;
: infile 'file-specification';
: input @1 name $10.
: @15 date date9
: @25 department $;
: run;

o*******w
发帖数: 2310
4
A raw data file is listed below:
RANCH,1250,2,1,Sheppard Avenue,"$64,000"
SPLIT,1190,1,1,Rand Street,"$65,850"
CONDO,1400,2,1.5,Market Street,"80,050"
TWOSTORY,1810,4,3,Garris Street,"$107,250"
RANCH,1500,3,3,Kemble Avenue,"$86,650"
SPLIT,1615,4,3,West Drive,"94,450"
SPLIT,1305,3,1.5,Graham Avenue,"$73,650"
The following SAS program is submitted using the raw data file as input:
data work.condo_ranch;
infile 'file-specification' dsd;
input style $ @;
if style = 'CONDO' or style = 'RANCH' then
input sqfeet bedrooms baths street $ price : dollar10.;
run;
How many observations does the WORK.CONDO_RANCH data set contain?
A. 0
B. 3
C. 5
D. 7
AND ANOTHER:
A raw data file is listed below:
RANCH,1250,2,1,Sheppard Avenue,"$64,000"
SPLIT,1190,1,1,Rand Street,"$65,850"
CONDO,1400,2,1.5,Market Street,"80,050"
TWOSTORY,1810,4,3,Garris Street,"$107,250"
RANCH,1500,3,3,Kemble Avenue,"$86,650"
SPLIT,1615,4,3,West Drive,"94,450"
SPLIT,1305,3,1.5,Graham Avenue,"$73,650"
The following SAS program is submitted using the raw data file as input:
data work.condo_ranch;
infile 'file-specification' dsd;
input style $ @;
if style = 'CONDO' or style = 'RANCH';
input sqfeet bedrooms baths street $ price : dollar10.;
run;
How many observations will the output data set contain?
A. 0
B. 3
C. 5
D. 7
DIFFERENT ANSWERS
w*****5
发帖数: 515
5
这个不怎么坑爹吧。。只要你把data step的处理流程弄懂了,然后一步步分析应该就
可以出结论吧。
d******9
发帖数: 404
6
Are these the authentic base exam questions???????????
If so, it means that SAS has used new exam questions.
o*******w
发帖数: 2310
7
A SAS PRINT procedure output of the WORK.LEVELS data set is listed below:
Obs name level
1 Frank 1
2 Joan 2
3 Sui 2
4 Jose 3
5 Burt 4
6 Kelly .
7 Juan 1
The following SAS program is submitted:
data work.expertise;
set work.levels;
if level = . then
expertise = 'Unknown';
else if level = 1 then
expertise = 'Low';
else if level = 2 or 3 then
expertise = 'Medium';
else
expertise = 'High';
run;
Which of the following values does the variable EXPERTISE contain?
A. Low, Medium, and High only
B. Low, Medium, and Unknown only
C. Low, Medium, High, and Unknown only
D. Low, Medium, High, Unknown, and ' ' (missing character value)
C is not the answer.
w********3
发帖数: 1503
8
...明天考诶。。。怎么这么多新题。。。
o*******w
发帖数: 2310
9
Please come here talk something after the EXAM

【在 w********3 的大作中提到】
: ...明天考诶。。。怎么这么多新题。。。
s******0
发帖数: 1269
10
不明白为什么第一个选a。。。。。。

【在 o*******w 的大作中提到】
: 很多都是故意弄陷阱,治马虎人.
: 很象国内的某些人出的,估计是华人出的.
: 当然,很有必要.
: 例子: The following SAS program is submitted:
: data employees;
: infile 'file-specification';
: input @1 name $10.
: @15 date date9
: @25 department $;
: run;

相关主题
请教sas adv的题请教sas123题中第59题。
求助一道SAS advanced题目再次请教 SAS ADV 题
请教一个123题的题目Sas base Question
进入Statistics版参与讨论
x*c
发帖数: 156
11
题库变了吗
Y*****o
发帖数: 1173
12
God, don't know most of the answers, Who can explain a little more?
P****D
发帖数: 11146
13
出这些题的人心理都有毛病,我觉得根本没必要。你养成了良好的编程习惯,那么根本
就没必要知道“不好”的编程习惯是什么样的。比如你这第二题,我养成了所有
character variable先用length声明其长度、以及避免重复用同一个variable的习惯,
那么我根本没必要知道题目中这种不好的写法会导致那个character variable被自动
truncate到合适的长度,因为我的好习惯决定了我一辈子也碰不上这种问题。不过在历
史悠久的大公司里工作的人,你自己习惯再好,也很有可能接手其他人写的习惯不好的
程序,那时如果需要debug,这种题目所考察的那种能力才有作用。
当然考试就是考试,他总得想出几个题目来考人,我也设计不出比目前这种形式更好的
题型。

【在 o*******w 的大作中提到】
: 很多都是故意弄陷阱,治马虎人.
: 很象国内的某些人出的,估计是华人出的.
: 当然,很有必要.
: 例子: The following SAS program is submitted:
: data employees;
: infile 'file-specification';
: input @1 name $10.
: @15 date date9
: @25 department $;
: run;

o*******w
发帖数: 2310
14
for the SAS beginner, these exam is very good to clear some confusions.

【在 P****D 的大作中提到】
: 出这些题的人心理都有毛病,我觉得根本没必要。你养成了良好的编程习惯,那么根本
: 就没必要知道“不好”的编程习惯是什么样的。比如你这第二题,我养成了所有
: character variable先用length声明其长度、以及避免重复用同一个variable的习惯,
: 那么我根本没必要知道题目中这种不好的写法会导致那个character variable被自动
: truncate到合适的长度,因为我的好习惯决定了我一辈子也碰不上这种问题。不过在历
: 史悠久的大公司里工作的人,你自己习惯再好,也很有可能接手其他人写的习惯不好的
: 程序,那时如果需要debug,这种题目所考察的那种能力才有作用。
: 当然考试就是考试,他总得想出几个题目来考人,我也设计不出比目前这种形式更好的
: 题型。

l*********s
发帖数: 5409
15
Yeah, and knowing these tricks does not help one become a better
statistician anyway. It is not even a coherent language. :-(

【在 P****D 的大作中提到】
: 出这些题的人心理都有毛病,我觉得根本没必要。你养成了良好的编程习惯,那么根本
: 就没必要知道“不好”的编程习惯是什么样的。比如你这第二题,我养成了所有
: character variable先用length声明其长度、以及避免重复用同一个variable的习惯,
: 那么我根本没必要知道题目中这种不好的写法会导致那个character variable被自动
: truncate到合适的长度,因为我的好习惯决定了我一辈子也碰不上这种问题。不过在历
: 史悠久的大公司里工作的人,你自己习惯再好,也很有可能接手其他人写的习惯不好的
: 程序,那时如果需要debug,这种题目所考察的那种能力才有作用。
: 当然考试就是考试,他总得想出几个题目来考人,我也设计不出比目前这种形式更好的
: 题型。

o*******w
发帖数: 2310
16
Is SAS base certification very helpful for job hunting or useless?
I think the advance EXAM should be very helpful.

【在 l*********s 的大作中提到】
: Yeah, and knowing these tricks does not help one become a better
: statistician anyway. It is not even a coherent language. :-(

1 (共1页)
进入Statistics版参与讨论
相关主题
[合集] 刚过了Advanced SAS请教一个base 123的问题,先谢谢大家了!!
请教SAS问题:这个code有什么办法简化吗?请教sas adv的题
急了,问道SAS题,(下午考)求助一道SAS advanced题目
SAS 问题请教请教一个123题的题目
请教SAS BASE的一个题目请教sas123题中第59题。
请教两道BASE题,关于if then的再次请教 SAS ADV 题
Base 123 中的问题(已考古,没有历史资料)Sas base Question
有关连接符的一道题问一个SAS code的问题
相关话题的讨论汇总
话题: sas话题: data话题: ranch话题: following