




已阅读5页,还剩4页未读, 继续免费阅读
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
SAS Base认证考试70题(61-70)Q 61Consider the data step:data WORK.TEST; infile c:class1.csv dsd; input Name Sex Age Height Weight; if Age NE 16 and Age NE 15 then Group=1; else Group=2;run;Which statement produces a functionally equivalent result for assigning Group a value?A. if Age not in(15,16) then Group=1; else Group=2; B. if (Age NE 16) or (Age NE 15) then Group=1; else Group=2;C. where Age not between 15 and 16 then Group=1; else Group=2;D. both A or C will work.答案:A本题知识点:IF语句、IN的使用参考第17题。Q 62The following SAS program is submitted: proc means data=SASUSER.SHOES; where Product in (Sandal , Slipper , Boot); run; Which ODS statements, inserted in the two locations above, create a report stored in an html file?A. ods html open=sales.html; ods html close; B. ods file=sales.html / html; ods file close; C. ods html file=sales.html; ods html close; D. ods file html=sales.html; ods file close; 答案:C本题知识点:PROC COTENTS过程ODS的主要输出目标:LISTING、RESULTS、OUTPUT、HTML、CSVALL、RTF、PDF、其他。ODS HTML适用于数据较少的数据集、或汇总的数据集,如TABULATE过程。Q 63The following SAS program is submitted: data WORK.OUTDS; do until(Prod GT 6); Prod + 1; end; run;What is the value of the variable Prod in the output data set?A. . (missing) B. 6C. 7D. Undetermined, infinite loop. 答案:C本题知识点:WHERE语句参考第40题。Q 64The following SAS program is submitted:data work.accounting; length jobcode $ 12; set work.department;run;The WORK.DEPARTMENT SAS data set contains a character variable named JOBCODE with a length of 5.Which of the following is the length of the variable JOBCODE in the output data set?A. 5B. 8C. 12D. The length can not be determined as the program fails to execute due to errors.答案:C本题知识点:LENGTH语句LEGTH规定的是变量的字节长度,不是格式,不能含小数点。LENGTH variable-specification(s) 其中,DEFAULT=n是规定新建的数值变量的默认长度8改为n。 数值变量对于数值变量,LENGTH范围为3-8字节。LENGTH可放在任意位置。在PROC SQL中ALERT不能改变数值变量长度。 字符变量对于字符变量,LENGTH范围为1-32767字节,空格占一个字符。LENGTH必须放在SET语句之前。实际上,较少使用LENGTH语句,而是通过PROC SQL中ALERT改变字符变量长度。Q 65The following SAS program is submitted: data WORK.ACCOUNTING; set WORK.DEPARTMENT; label Jobcode=Job Description; run;Which statement is true about the output dataset?A. The label of the variable Jobcode is Job (only the first word).B. The label of the variable Jobcode is Job Desc (only the first 8 characters). C. The label of the variable Jobcode is Job Description.D. The program fails to execute due to errors. Labels must be defined in a PROC step.答案:C本题知识点:LABEl标签语句参考第37题。Q 66The following SAS program is submitted: data WORK.SALES; do Year=1 to 5; do Month=1 to 12; X + 1; end; end; run;How many observations are written to the WORK.SALES data set? A. 0 B. 1 C. 5 D. 60答案:B本题知识点:默认的OUTPUT语句参考第40题。Q 67Consider the following data step: data WORK.NEW; set WORK.OLD(keep=X); if X = 10 AND X LT 20 then X=2; else X=3; run; In filtering the values of the variable X in data set WORK.OLD, what value new value would be assigned to X if its original value was a missing value? A. X would get a value of 1.B. X would get a value of 3.C. X would retain its original value of missing. D. This step does not run because of syntax errors.答案:A本题知识点:缺失值的计算逻辑计算时按ASCII进行比较,缺失值主要是空格(ASCII值为32)和英文句号(ASCII值为46)。0-9为48-57A-Z为65-90a-z为97-122Q 68The following SAS program is submitted: data WORK.ACCOUNTING; set WORK.DEPARTMENT; length EmpId $6; CharEmpid=EmpId; run;If data set WORK.DEPARTMENT has a numeric variable EmpId, which statement is true about the output dataset?A. The type of the variable CharEmpid is numeric.B. The type of the variable CharEmpid is unknown.C. The type of the variable CharEmpid is character.D. The program fails to execute due to errors. 答案:D本题知识点:数据类型的转换、LENTH定义长度参考第10题。Q 69Given the data set WORK.EMPDATA: Employee_ Manager_ ID Job_Title Department ID - - - - 120101 Director Sales Management 120261 120102 Sales Manager Sales Management 120101 120103 Sales Manager II Sales Management 120101 120104 Administration Manager Administration 120101 120105 Secretary I Administration 120101Which one of the following where statements would display observations with job titles containing the word Manager?A. where substr(Job_Title,(length(Job_Title)-6)=Manager; B. where upcase(scan(Job_Title,-1, )=MANAGER;C. where Job_Title=% Manager ; D. where Job_Title like %Manager%; 答案:D本题知识点:WHERE语句WHERE语句与数据集中WHERE选项是在观察读入PDV之前必须满足的一个条件。WHERE where-expression-1 运算符说 明 between and选择一定数据范围的观测 is missing/null选择变量值为缺失值的观测 contain/?选择包含规定字符的观察 like匹配选择观测 same and增加多个从句LIKE:下划线表示与一个字符匹配,百分号表示任意的多个字符。Q 70After a SAS program is submitted, the following is written to the SAS log: 105 data WORK.JANUARY; 106 set WORK.ALLYEAR(keep=Product Month Quantity Cost); 107 if Month=JAN then output WORK.JANUARY; 108 Sales=Cost * Quantity; 109 drop=Month Quantity Cost; - 22 ERROR 22-322: Syntax error, expecting one of the following: !, !, &, *, *, +, -, , =, , =, , =, AND, EQ, GE, GT, IN, LE, LT, MAX, MIN, NE, NG, NL, NOTIN, OR, =, |, |, =. 110 run;What data set op
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 2026届广东省广州市花都区八年级物理第一学期期末复习检测模拟试题含解析
- 河北省石家庄市栾城区2026届物理八上期末检测模拟试题含解析
- 2026届浙江省义乌市物理八年级第一学期期末统考试题含解析
- 2026届级安徽省淮北市西园中学物理八年级第一学期期末学业质量监测试题含解析
- 【正版授权】 ISO 7730:2025 EN Ergonomics of the thermal environment - Analytical determination and interpretation of thermal comfort using calculation of the PMV and PPD indices and loca
- 防洪预警艇项目可行性研究报告
- 深圳qflp管理办法
- 湖北防疫资金管理办法
- 湖南株洲农电管理办法
- 湖南防汛资金管理办法
- 二级豆粕创新创业项目商业计划书
- (统编2025版)道德与法治一年级上册教学计划(新教材)
- 2025云南昆明巫家坝建设发展有限责任公司招聘23人笔试备考题库及答案解析
- 2025年电气工程师高级专业考试题库
- 2024年山东省节能与双碳促进中心招聘真题
- 2025-2026学年统编版小学语文四年级上册教学计划及进度表
- 高二奋发+勇攀高峰+课件-2025-2026学年高二上学期开学第一课主题班会
- KTV突发事件安全应急预案
- DB15T 3543-2024 大蒜主要病虫害绿色防控技术规程
- 《液压与气动》课件(共十三章)
- 住建部《建筑业10项新技术(2017版)》解读培训课件
评论
0/150
提交评论