电子文档交易市场
安卓APP | ios版本
电子文档交易市场
安卓APP | ios版本
换一换
首页 金锄头文库 > 资源分类 > DOC文档下载
分享到微信 分享到微博 分享到QQ空间

SAS 高级程序员 考试大纲和考试经验精华(总结)

  • 资源ID:88919020       资源大小:28.49KB        全文页数:3页
  • 资源格式: DOC        下载积分:15金贝
快捷下载 游客一键下载
账号登录下载
微信登录下载
三方登录下载: 微信开放平台登录   支付宝登录   QQ登录  
二维码
微信扫一扫登录
下载资源需要15金贝
邮箱/手机:
温馨提示:
快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。
如填写123,账号就是123,密码也是123。
支付方式: 支付宝    微信支付   
验证码:   换一换

 
账号:
密码:
验证码:   换一换
  忘记密码?
    
1、金锄头文库是“C2C”交易模式,即卖家上传的文档直接由买家下载,本站只是中间服务平台,本站所有文档下载所得的收益全部归上传人(卖家)所有,作为网络服务商,若您的权利被侵害请及时联系右侧客服;
2、如你看到网页展示的文档有jinchutou.com水印,是因预览和防盗链等技术需要对部份页面进行转换压缩成图而已,我们并不对上传的文档进行任何编辑或修改,文档下载后都不会有jinchutou.com水印标识,下载后原文更清晰;
3、所有的PPT和DOC文档都被视为“模板”,允许上传人保留章节、目录结构的情况下删减部份的内容;下载前须认真查看,确认无误后再购买;
4、文档大部份都是可以预览的,金锄头文库作为内容存储提供商,无法对各卖家所售文档的真实性、完整性、准确性以及专业性等问题提供审核和保证,请慎重购买;
5、文档的总页数、文档格式和文档大小以系统显示为准(内容中显示的页数不一定正确),网站客服只以系统显示的页数、文件格式、文档大小作为仲裁依据;
6、如果您还有什么不清楚的或需要我们协助,可以点击右侧栏的客服。
下载须知 | 常见问题汇总

SAS 高级程序员 考试大纲和考试经验精华(总结)

SAS Certified Advanced Programmer for SAS 9 Credential一、考试大纲:需掌握如下内容· using advanced DATA step programming statements and efficiency techniques to solve complex problems.(25% 程序优化&提高效率=Optimization and efficiency )· writing and interpreting SAS SQL code.(45%)· creating and using the SAS MACRO facility.(30%)Required Exam· 60-65 multiple-choice and short-answer questions (must achieve score of 65% correct to pass).· Use exam ID A00-212; required when registering with Pearson VUE.Exam topics include:Accessing Data Using SQL· Generate detail and summary reports by working with a single table, joining tables, or using set operators in the SQL procedure.· Construct sub-queries and in-line views within (构造子查询和内联视图)an SQL procedure step.· Compare solving a problem using the SQL procedure versus using traditional SAS programming techniques.· Access Dictionary Tables using the SQL procedure.Macro Processing· Create and use user-defined and automatic macro variables within the SAS Macro Language.· Automate programs by defining and calling macros using the SAS Macro Language.· Understand the use of macro functions.· Use various system options that are available for macro debugging(用于宏调试) and displaying values of user-defined and automatic macro variables in the SAS log.· Create data-driven programs using SAS Macro Language.Advanced Programming Techniques· Demonstrate the use of advanced data look-up techniques such as array processing, hash objects(散列对象), formats, and combining/merging data.· Reduce computing resource requirements by controlling the space required to store SAS data sets using compression techniques, length statements, or eliminating variables and observations.· Reduce programming time by developing reusable SAS programs which incorporate data step views, DATA steps that write SAS programs, and the FCMP procedure.· Perform effective benchmarking by using the appropriate SAS System options and interpreting the resulting resource utilization statistics.· Identify appropriate applications for using indexes (识别索引) and create them using the DATA step, the DATASETS procedure, or the SQL procedure.· Compare techniques to eliminate duplicate data (消除重复数据) using the DATA step, the SORT procedure, and the SQL procedure.二、考试经验总结和已考内容1. 复习要点和考试范围高级的skills很有用,SQL,MACRO及一些programming utility (程序控制工具即,optimization(优化) & efficiency(效率)的技巧在实际应用中很有价值。Advanced前三部分多看几遍,不断地编程,google很多定义(Adv 总共是四部分,SQL & MACRO是重点)。(1)MACRO:涵盖比较宽,掌握如何RESOLVE(解析)MACRO programming。(理解macro,考35%)(2)SQL:Proc SQL内容基本都涵盖,比较基础,必须搞清每一个操作。(理解SQL,考45%)(3)其他ADVANCED 提高EFFICIENCY 的TECHNIQUES 居多。另外,ADVANCED中Proc dataset 也有少量考题(考25%)个人体会:高级没有捷径,多看、多练、多用。要以看书为主,若能把Pro guide advance & SAS Online Tutor 9.1 Advanced Programming 看一遍,再把考题融会贯通,可以考高分。好好复习e-learning的advanced的library可以涵盖90%的内容。2. 重点题库强烈推荐50道模拟题和Item 1 of 63 Mark item for review(没有答案),其已囊括75%的题目。一共有63个问题,与新旧130题相比,题型变化较大,一些细节上的东西较多。我复习一个月,把Pre guide Advance 看了一遍,所有的能找到的考题基本上记住答案(包括130 及新130题,50题,Pass4 sure)。(1) where和if的变量操作空间:where还是if是在input buffer(输入缓存器)或者PDV(Logical Program Data Vector, 程序数据向量是PC内存的一个临时逻辑区,包含有整个程序的翻译和执行阶段)之间操作,作用域及在optimization & efficiency的不同(4道题);(2)SQL 过程查看,字典lib, 并弄清Dictionary. table里面变量的名称和对应关系;(3)SQL query with sub-query and grouping(SQL查询和sub-查询);(4)SQL set operator(运算符join in等)主要是Proc SQL和data set比较,比如full joint, left joint集合运算结果及其与merge比较,这个会考的非常细致;(5)merging data, SAS Data Step 和等同的 SQL query(有5道题有关);(6)MACRO变量创建和使用,很熟悉LOCAL和GLOBAL的MACRO VARIABLE及和data之间的交换。多考最后MACRO给出的是什么值;并掌握系统automatic macro variables(比如&sysdate9)也考了23道题;(7)MACRO:multiple ampersand 解析(多个算符),对ampersand & 要熟悉 如:indirect(间接)情况;(8)Mask(隐藏)特殊字符;(9)SQL中view,index,sort建立和使用efficiency techniques。Index(索引)优化,使用的condition及create的不同方式;sorted by 在 data a (sorted by= var)里的作用;还有某些情况CPU, I/O, DISK SPACE如何降低使用;(10)Optimization and efficiency部分大约9道题。1) buffer的掌握:buffer number: 在data a (bufsize=2222 bufno=6) 里buffsize size是 bytes还是 kilobytes,在output还是 input里?bufno是number of buffer在output里? data one (bufno=6); set two (bufno=6); 其中bufno作用? BUFSIZE=、BUFNO=、BUFSIZE*BUFNO。They are in the Optimization and efficiency part,其中bufno的作用?2)compress=yes 和数据变量以及字符变量联系起来复习,以及如何压缩的?reuse=yes在 compress里什么作用?3)hash object好处(可快速得到key对应的内存地址直接取数,不用扫描整个表,效率更高),和Key values (关键码值)有关的知识一起复习,以及执行完后保存与否?array的相关知识?4)SELECT in data step和 IF-THEN/ELSE在efficiency 上的不同?5)Advance中data step和proc dataset应用(以为PROC DATASETS会考多点,12道题有关)(11)SASFILE 的作用?

注意事项

本文(SAS 高级程序员 考试大纲和考试经验精华(总结))为本站会员(jiups****uk12)主动上传,金锄头文库仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即阅读金锄头文库的“版权提示”【网址:https://www.jinchutou.com/h-59.html】,按提示上传提交保证函及证明材料,经审查核实后我们立即给予删除!

温馨提示:如果因为网速或其他原因下载失败请重新下载,重复下载不扣分。




关于金锄头网 - 版权申诉 - 免责声明 - 诚邀英才 - 联系我们
手机版 | 川公网安备 51140202000112号 | 经营许可证(蜀ICP备13022795号)
©2008-2016 by Sichuan Goldhoe Inc. All Rights Reserved.