CSWP笔试部份考试样题
2023年下半年网络工程师真题及答案
全国计算机技术与软件专业技术资格(水平)考试2023年下六个月网络工程师上午试卷原则参照答案● 在输入输出控制措施中,采用(1)可以使得设备与主存间旳数据块传送无需CPU 干预。
(1)A.程序控制输入输出 B.中断 C.DMA D.总线控制参照答案:(1)C● 若计算机采用8位整数补码表达数据,则(2)运算将产生溢出。
(2)A.-127+1 B.-127-1 C.127+1 D.127-1试题解析:8位整数补码中,【-127】补=,【127】补=[X-Y]补 = [X]补 - [Y]补 = [X]补 + [-Y]补8位整数补码旳表达范围位-128~+127参照答案:(2)C● 编写汇编语言程序时,下列寄存器中,程序员可访问旳是(3)。
(3) A.程序计数器(PC) B.指令寄存器(IR)C.存储器数据寄存器(MDR) D.存储器地址寄存器(MAR)参照答案:(3)A● 使用PERT图进行进度安排,不能清晰地描述(4),但可以给出哪些任务完毕后才能开始另某些任务。
下面PERT图所示工程从A到K旳关键途径是(5)(图中省略了任务旳开始和结束时刻)。
(4) A.每个任务从何时开始 B.每个任务到何时结束C.各任务之间旳并行状况 D.各任务之间旳依赖关系(5) A.ABEGHIK B.ABEGHJK C.ACEGHIK D.ACEGHJK参照答案:(4)C,(5)B● 某项目组拟开发一种大规模系统,且具有了有关领域及类似规模系统旳开发经验。
下列过程模型中,(6)最合适开发此项目。
(6)A.原型模型B.瀑布模型 C.V模型D.螺旋模型参照答案:(6)B● 软件复杂性度量旳参数不包括(7)。
(7)A.软件旳规模 B.开发小组旳规模 C.软件旳难度 D.软件旳构造参照答案:(7)B● 在操作系统文献管理中,一般采用(8)来组织和管理外存中旳信息。
(8)A.字处理程序 B.设备驱动程序 C.文献目录 D.语言翻译程序参照答案:(8)C● 假设系统中进程旳三态模型如下图所示,图中旳a、b和c旳状态分别为(9)。
SolidWorks官方认证--CSWP
11, 文件在转换和保存之后,可以还原为以前的 SolidWorks 版本。 A) True B) False
12, 您在工程图中生成了剖面视图,但发现方向不正确。 如何改变剖面视图的方向? A) 选择该视图,单击"工具"、"工程视图"。 在"旋转剖视图"对话框中单击"反向"。 B) 选择剖切线和修改草图工具。 在"修改草图"对话框中,单击"反向"。 C) 双击剖切线。 D) 选择剖切线和镜向工具。
14, 要使装配体中的零部件透明,请: A) 右键单击零部件并选择"外观"、"透明度"。 B) 右键单击零部件并选择"更改透明度"。 C) 右键单击零部件并选择"属性"。 D) 以上都不是。
15 SolidWorks 文件在转换和保存之后,可以还原为以前的 SolidWorks 版本。 A) True B) False
0.2500
7.建立零件的固定座 分别添加一个凸台特征和一个切除特征形成一个实体,并镜像该实体。 将两个固定座合并到零件中。
0.5000
R0.6250
8.建立其他特征 如图所示建立孔和切除特征。
0.6250
0.5625
0.3125 1.2500
9.建立圆角过渡 为零件建立 R=0.0625in 的圆角过渡。
o CSWP 资料包,其中包括 CSWP 皮制文件夹、笔、证书、防伪标记、钥匙链和证书 架。考生成绩必须至少为 80 分。
o 名片徽标,它可以向同事和客户展示您的 CSWP 身份。 o 受邀参加 SolidWorks 用户大会、技术培训课程和专门活动的机会。还可享受特殊活动
微软等IT名企经典笔试100题(答案另外上传)
1.把二元查找树转变成排序的双向链表题目:输入一棵二元查找树,将该二元查找树转换成一个排序的双向链表。
要求不能创建任何新的结点,只调整指针的指向。
10/ \6 14/ \ / \4 8 12 16转换成双向链表4=6=8=10=12=14=16。
首先我们定义的二元查找树节点的数据结构如下:struct BSTreeNode{int m_nValue; // value of nodeBSTreeNode *m_pLeft; // left child of nodeBSTreeNode *m_pRight; // right child of node};2.设计包含min函数的栈。
定义栈的数据结构,要求添加一个min函数,能够得到栈的最小元素。
要求函数min、push以及pop的时间复杂度都是O(1)。
3.求子数组的最大和题目:输入一个整形数组,数组里有正数也有负数。
数组中连续的一个或多个整数组成一个子数组,每个子数组都有一个和。
求所有子数组的和的最大值。
要求时间复杂度为O(n)。
例如输入的数组为1, -2, 3, 10, -4, 7, 2, -5,和最大的子数组为3, 10, -4, 7, 2,因此输出为该子数组的和18。
4.在二元树中找出和为某一值的所有路径题目:输入一个整数和一棵二元树。
从树的根结点开始往下访问一直到叶结点所经过的所有结点形成一条路径。
打印出和与输入整数相等的所有路径。
例如输入整数22和如下二元树10/ \5 12/ \4 7则打印出两条路径:10, 12和10, 5, 7。
二元树节点的数据结构定义为:struct BinaryTreeNode // a node in the binary tree{int m_nValue; // value of nodeBinaryTreeNode *m_pLeft; // left child of nodeBinaryTreeNode *m_pRight; // right child of node};5.查找最小的k个元素题目:输入n个整数,输出其中最小的k个。
CSWP考试
CSWP考试CSWP考试范围和样题⼀、CSWP考试简介1、考试时间:180分钟2、考试总分:200分3、及格线:150分4、考试流程:与CSWP类似⼆、考试范围三、样题1、设计下图图⽰模型单位系统:MMGS(毫⽶、克、秒)精度:⼩数点后两位模型原点:任意模型材料:黄铜材料密度:0.0085g/ mm^3设计要点:模型为整体抽壳,只有⼀个图中所⽰的开放⾯(抽壳去除⾯)问题⼀:A = 60;B = 64;C = 140;D = 19。
问零件质量为_________克问题⼆:A = 50;B = 70;C = 160;D = 23。
为零件质量为_________克2、⽤以下特征和尺⼨更新上题的模型单位系统:MMGS(毫⽶、克、秒)精度:⼩数点后两位模型原点:任意模型材料:黄铜材料密度:0.0085g/ mm^3设计要点:抽壳特征被压缩问题三:A = 60;B = 64;C = 140;D = 19;E = 25。
问零件质量为_________克问题⼆:A = 70;B = 80;C = 130;D = 15;E = 40。
问零件质量为_________克参考答案:1) 1006.91 grams2) 1230.82 grams3) 2859.51 grams4) 3218.14 grams以上4题要在20~30分钟之内完成考试要点:1、所有草图都要完全定义;2、仔细分析题⽬要求,按照图⽰设置好坐标系(本题没有反映此要求);3、运⽤⼏何约束、⽅程式、共享数值等描述设计意图,使模型便于变更;4、掌握压缩特征、压缩配合关系等操作⽅式,改变模型或者装配状态。
cswp考试试题库
cswp考试试题库# CSWP考试试题库一、单选题1. 在SolidWorks中,下列哪个命令用于创建草图?A. 拉伸B. 旋转C. 草图D. 扫描2. 以下哪个选项不是SolidWorks的装配体特征?A. 配合B. 爆炸视图C. 阵列D. 镜像3. 在SolidWorks中,使用哪个工具可以创建复杂曲面?A. 拉伸B. 扫描C. 放样D. 填充4. 以下哪个不是SolidWorks的工程图视图类型?A. 标准视图B. 详细视图C. 剖面视图D. 3D视图5. 在SolidWorks中,如何修改一个已经创建的草图的尺寸?A. 直接双击尺寸B. 右键点击尺寸C. 选择尺寸后按Delete键D. 选择尺寸后按Enter键二、多选题6. 以下哪些是SolidWorks的草图工具?A. 直线B. 矩形C. 圆D. 填充7. 以下哪些是SolidWorks的装配体操作?A. 装配B. 爆炸C. 干涉检查D. 焊接8. 在SolidWorks中,哪些是创建工程图的步骤?A. 新建工程图B. 选择视图C. 添加尺寸D. 生成图纸9. 以下哪些是SolidWorks的参数化设计特点?A. 易于修改B. 易于复制C. 易于共享D. 易于打印10. 在SolidWorks中,哪些是特征的类型?A. 拉伸B. 旋转C. 扫描D. 填充三、判断题11. SolidWorks中的草图可以包含多个独立的部分。
()12. 装配体的爆炸视图可以用于动画演示。
()13. SolidWorks的工程图不能包含多个视图。
()14. 参数化设计允许用户通过修改原始参数来更新设计。
()15. SolidWorks不支持3D打印功能。
()四、简答题16. 简述SolidWorks中创建装配体的基本步骤。
17. 解释SolidWorks中的特征驱动设计是什么,并给出一个例子。
18. 描述SolidWorks工程图中的剖面视图的作用。
19. 阐述SolidWorks中如何进行干涉检查。
cswp测试题及答案
cswp测试题及答案CSWP测试题及答案一、选择题(每题2分,共20分)1. CSWP代表以下哪个认证?A. Certified SolidWorks ProfessionalB. Certified Software ProfessionalC. Certified System Work ProfessionalD. Certified System Work Process答案:A2. CSWP认证主要针对以下哪个软件的用户?A. AutoCADB. SolidWorksC. CATIAD. Pro/ENGINEER答案:B3. 以下哪个不是CSWP考试的组成部分?A. 3D建模B. 2D绘图C. 项目管理D. 零件装配答案:C4. CSWP考试的总分是多少?A. 100分B. 200分C. 300分D. 400分答案:B5. 通过CSWP考试的最低分数要求是多少?A. 70%B. 75%C. 80%D. 85%答案:B6. CSWP考试的有效期是多久?A. 1年B. 2年C. 3年D. 终身有效答案:C7. 以下哪个不是CSWP考试的准备资源?A. 官方培训课程B. 在线模拟考试C. 官方教材D. 个人经验答案:D8. CSWP考试中,以下哪个操作不是必需的?A. 应用材料属性B. 使用装配约束C. 进行有限元分析D. 应用焊接符号答案:C9. CSWP认证对于以下哪个职业最有帮助?A. 机械设计师B. 会计师C. 软件工程师D. 市场营销专员答案:A10. 以下哪个不是CSWP认证的优势?A. 增加职业竞争力B. 获得更高的薪资C. 获得终身学习的机会D. 获得国际认可答案:C二、简答题(每题5分,共30分)1. 请简述CSWP认证的目的是什么?答案:CSWP认证的目的是验证个人在SolidWorks软件上的专业技能和知识水平,以提高其在工程设计领域的职业竞争力。
2. CSWP认证考试通常包含哪些内容?答案:CSWP认证考试通常包含3D建模、2D绘图、零件装配、焊接、表面建模等内容。
网络信息安全工程师招聘笔试题及解答(某大型国企)
招聘网络信息安全工程师笔试题及解答(某大型国企)(答案在后面)一、单项选择题(本大题有10小题,每小题2分,共20分)1、下列哪个协议主要用于加密机制?A. HTTPB. FTPC. SSL/TLSD. TCP2、防火墙的主要功能是什么?A. 监控进出网络的数据包B. 管理内部人员访问权限C. 加密数据传输D. 提供虚拟专用网络(VPN)服务3、在网络安全领域中,以下哪个协议主要用于加密电子邮件传输?A. SSL/TLSB. SSHC. PGPD. FTP4、以下哪种攻击方式主要通过社会工程学手段来获取信息?A. 中间人攻击B. 拒绝服务攻击C. 网络钓鱼攻击D. SQL注入攻击5、关于以下关于SQL注入的描述,哪项是正确的?A、SQL注入是一种利用数据库系统漏洞,通过在输入字段插入恶意的SQL语句,从而达到非法访问数据库信息的目的。
B、SQL注入是一种攻击者通过在网页表单中输入特殊字符,使得表单提交时执行攻击者预先定义的SQL语句。
C、SQL注入是一种通过在数据库查询语句中插入恶意代码,使得数据库执行非预期操作。
D、SQL注入是一种攻击者利用数据库系统的不安全性,通过直接访问数据库文件进行攻击。
6、以下哪种加密算法适用于对称加密?A、RSAB、AESC、SHA-256D、MD57、以下哪个协议主要用于网络设备的身份验证、授权和会话管理?A. HTTPB. FTPC. SSHD. SMTP8、在网络安全中,以下哪种攻击方式被称为“中间人攻击”(Man-in-the-Middle Attack)?A. 拒绝服务攻击(DoS)B. 钓鱼攻击(Phishing)C. 中间人攻击(MitM)D. SQL注入攻击9、在网络安全领域,以下哪种协议用于保证数据在传输过程中的完整性和认证?A. SSL/TLSB. IPsecC. FTPD. HTTP 10、以下哪个选项不是导致网络钓鱼攻击成功的主要原因?A. 用户缺乏网络安全意识B. 邮件伪装技术高超C. 网络基础设施安全漏洞D. 用户点击了恶意链接二、多项选择题(本大题有10小题,每小题4分,共40分)1、以下哪些技术或工具通常用于网络信息安全防护?()A、防火墙B、入侵检测系统(IDS)C、数据加密技术D、漏洞扫描工具E、VPN技术2、以下哪些行为可能会对网络信息安全构成威胁?()A、使用弱密码B、随意连接公共Wi-FiC、定期更新软件和操作系统D、共享敏感信息E、使用U盘等移动存储设备3、以下哪些技术或工具通常用于网络入侵检测与防御?()A. 防火墙B. 网络入侵检测系统(NIDS)C. 入侵防御系统(IDS)D. 安全信息与事件管理(SIEM)E. 数据库防火墙5、以下哪些技术或工具通常用于网络信息安全防护?()A、防火墙B、入侵检测系统(IDS)C、数据加密技术D、恶意代码扫描工具E、VPN技术6、以下哪些行为可能会对网络信息安全构成威胁?()A、员工使用个人邮箱处理公司敏感信息B、未定期更新操作系统和应用程序C、员工在公共场所使用未加密的Wi-Fi连接D、员工离职时未进行权限清理E、内部员工之间共享密码7、以下哪些措施可以有效提高网络信息系统的安全性?()A、定期进行安全漏洞扫描B、设置复杂且定期更换的密码C、限制用户权限,最小化用户权限原则D、不安装非必要的软件和服务E、不定期进行数据备份8、以下关于加密算法的描述,正确的是哪些?()A、对称加密算法速度快,但密钥管理复杂B、非对称加密算法速度慢,但密钥管理简单C、哈希算法是不可逆的,因此可以用于验证数据完整性D、公钥加密算法通常用于加密通信,私钥加密算法用于数字签名E、对称加密算法和非对称加密算法都可以用于数字签名9、以下哪些属于网络安全防护的基本原则?()A. 防火墙策略的合理设置B. 定期进行系统漏洞扫描和修复C. 使用强密码策略D. 物理安全控制 10、以下哪些属于网络攻击的类型?()A. DDoS攻击B. SQL注入攻击C. 恶意软件攻击D. 中间人攻击三、判断题(本大题有10小题,每小题2分,共20分)1、网络信息安全工程师在处理数据加密时,必须使用对称加密算法,以确保数据传输的安全性。
cswip练习题
CSWIP练习题一、基础理论部分1.1 计算机系统组成1. 请列举计算机硬件系统的五大组成部分。
2. 简述CPU的工作原理。
3. 解释内存和硬盘的区别。
4. 请说明计算机软件的分类。
1.2 操作系统5. 请列举三种常见的操作系统及其特点。
6. 简述文件系统的概念及其作用。
7. 解释进程和线程的区别。
8. 请说明操作系统的五大功能。
1.3 数据结构与算法9. 请列举三种常见的数据结构及其特点。
10. 简述冒泡排序算法的原理。
11. 请解释二分查找算法的原理。
12. 请说明递归的概念及其应用。
二、编程语言部分2.1 C语言13. 请解释C语言中的变量及其作用。
14. 简述C语言中的三种基本控制结构。
15. 请列举C语言中的四种基本数据类型。
16. 解释C语言中的指针及其作用。
2.2 Java语言17. 请解释Java中的面向对象编程思想。
18. 简述Java中的异常处理机制。
19. 请列举Java中的四种访问修饰符及其作用。
20. 解释Java中的泛型及其应用。
2.3 Python语言21. 请解释Python中的列表、元组、字典和集合的区别。
22. 简述Python中的函数定义及调用。
23. 请说明Python中的类和对象的概念。
24. 解释Python中的装饰器及其作用。
三、计算机网络部分3.1 网络基础25. 请解释TCP/IP协议分层模型。
26. 简述OSI七层模型及其作用。
27. 请说明IP地址的分类及其表示方法。
28. 解释子网掩码的概念及其作用。
3.2 网络应用29. 请列举三种常见的网络传输协议及其作用。
30. 简述HTTP协议的工作原理。
31. 请解释SMTP协议在电子邮件传输中的作用。
32. 说明VPN技术的概念及其应用。
四、数据库部分4.1 关系型数据库33. 请解释数据库的概念及其作用。
34. 简述SQL语言的基本语法。
35. 请列举三种常见的关系型数据库管理系统及其特点。
36. 解释索引的概念及其作用。
cswa考试往年题目和答案
cswa考试往年题目和答案### CSWA考试往年题目和答案#### 题目1:网络协议分析**题目描述:**分析以下网络协议数据包,并确定其协议类型。
```01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F---------------------------------------00 11 22 33 44 55 66 77 88 99 AA BB CC DD EE FF```**答案解析:**根据给定的数据包,我们可以看到数据包以`01 02 03 04`开头,这是以太网帧的MAC地址部分。
接下来的`05 06 07 08`是目标MAC地址。
因此,我们可以确定这是一个以太网帧。
以太网帧是网络通信中常用的数据链路层协议。
#### 题目2:操作系统权限管理**题目描述:**在一个基于UNIX的系统中,如何设置文件权限,使得用户A 可以读取文件,用户B可以写入文件,而其他用户无权限访问?**答案解析:**在UNIX系统中,可以使用`chmod`命令来设置文件权限。
对于这个问题,我们需要给用户A读取权限,给用户B写入权限,而其他用户无权限。
可以使用以下命令:```bashchmod 640 filename```这里,`6`代表用户(owner)有读写权限,`4`代表用户组(group)有读权限,`0`代表其他用户(others)无权限。
#### 题目3:数据库注入攻击**题目描述:**如何防止SQL注入攻击?**答案解析:**防止SQL注入攻击的方法包括:1. **使用参数化查询**:使用参数化查询可以避免SQL注入,因为参数化查询将数据和SQL命令分开处理。
2. **使用ORM(对象关系映射)**:ORM框架通常会自动处理SQL注入问题。
3. **对输入进行验证**:对用户输入的数据进行严格的验证,确保它们符合预期的数据类型和格式。
4. **使用Web应用防火墙(WAF)**:WAF可以帮助识别和阻止SQL注入攻击。
CSWA 考试样题
SolidWorks Corporation: CSWA Sample Exam Certified SolidWorks Associate (CSWA) DISCLAIMER: This sample exam is provided to show you the format and approximate difficulty level of the real exam. It is not meant to give away the whole CSWA exam.These questions are an example of what to expect in the CSWA exam.How to take this sample exam:1.To best simulate the conditions of the real test, it is best NOT to print this exam. Sincethe Virtual Tester client window runs concurrently with SolidWorks you must switchback and forth between the two applications. Keeping this document open and consulting it on your computer while running SolidWorks is the best method to simulate the real test conditions.2.The multiple choice answers should serve as a check for you to ensure that your model ison the right track while completing this exam. If you do not find your answer in theselections offered then most likely there is something wrong with your model at thatpoint.3.Answers to the questions are on the last pages of this sample test document. There arealso hints that can help save time during the exam.4.If you can complete this exam and get at least 6 out of the 8 questions correctly in 90minutes or less then you should be ready to take the real CSWA exam.What you will need for the real CSWA exam:1. A computer that is running SolidWorks 2007 or higher.2.The computer must have a connection to the Internet.3. A double-monitor is recommended but not necessary.4.If you will be running the Virtual Tester client on a separate computer from the one thatis running SolidWorks, make sure there is a way to transfer files from one computer tothe other. You will be required to download SolidWorks files during the real test to beable to correctly answer some of the questions.The following is the topic and question breakdown of the CSWA exam:Drafting Competencies (3 Questions of 5 Points Each):∙Miscellaneous questions on drafting functionalityBasic Part Creation and Modification (2 Questions of 15 Points Each): ∙Sketching∙Extrude Boss∙Extrude Cut∙Modification of Key DimensionsIntermediate Part Creation and Modification (2 Questions of 15 Points Each): ∙Sketching∙Revolve Boss∙Extrude Cut∙Circular PatternAdvanced Part Creation and Modification (3 Questions of 15 Points Each): ∙Sketching∙Sketch Offset∙Extrude Boss∙Extrude Cut∙Modification of Key Dimensions∙More Difficult Geometry ModificationsAssembly Creation (4 Questions of 30 Points Each):∙Placing of Base Part∙Mates∙Modification of Key Parameters in AssemblyTotal Questions: 14Total Points: 240165 out of 240 points needed to pass the CSWA.The sample test below will show the basic format of the CSWA exam in three sections: ∙Drafting Competencies∙Part Modeling∙Assembly CreationSAMPLE TESTDrafting Competencies:1.To create drawing view ‘B’ it is necessary to sketch a spline (as shown) on drawing view ‘A’and insert which SolidWorks view type?a)Sectionb)Cropc)Projectedd)Detail2.To create drawing view ‘B’ it is necessary to sketch a spline (as shown)on drawing view ‘A’and insert which SolidWorks view type?a)Aligned Sectionb)Detailc)Broken-out Sectiond)SectionPart Modeling: (These images are to be used to answer Questions #3 – 4)3.Part (Tool Block) - Step 1Build this part in SolidWorks.(Save part after each question in a different file in case it must be reviewed)Unit system: MMGS (millimeter, gram, second)Decimal places: 2Part origin: ArbitraryAll holes through all unless shown otherwise.Material: AISI 1020 SteelDensity = 0.0079 g/mm^3A = 81.00B = 57.00C = 43.00What is the overall mass of the part (grams)?Hint: If you don't find an option within 1% of your answer please re-check your solid model.a)1028.33b)118.93c)577.64d)939.544.Part (Tool Block) - Step 2Modify the part in SolidWorks.Unit system: MMGS (millimeter, gram, second)Decimal places: 2Part origin: ArbitraryAll holes through all unless shown otherwise.Material: AISI 1020 SteelDensity = 0.0079 g/mm^3Use the part created in the previous question and modify it by changing the following parameters:A = 84.00B = 59.00C = 45.00Note: Assume all other dimensions are the same as in the previous question.What is the overall mass of the part (grams)?Part Modeling: (These images are to be used to answer Question #5)5.Part (Tool Block) - Step 3Modify this part in SolidWorks.Unit system: MMGS (millimeter, gram, second)Decimal places: 2Part origin: ArbitraryAll holes through all unless shown otherwise.Material: AISI 1020 SteelDensity = 0.0079 g/mm^3Use the part created in the previous question and modify it by removing material and also by changing the following parameters:A = 86.00B = 58.00C = 44.00What is the overall mass of the part (grams)?Part Modeling: (These images are to be used to answer Question #6)6.Part (Tool Block) - Step 4Modify this part in SolidWorks.Unit system: MMGS (millimeter, gram, second)Decimal places: 2Part origin: ArbitraryAll holes through all unless shown otherwise.Material: AISI 1020 SteelDensity = 0.0079 g/mm^3Use the part created in the previous question and modify it by adding a pocket.Note 1: Only one pocket on one side is to be added. This modified part is not symmetrical. Note 2: Assume all unshown dimensions are the same as in the previous question #5. What is the overall mass of the part (grams)?Assembly Modeling: (These images are to be used to answer Question #7 and 8)It contains 2 long_pins (1), 3 short_pins (2), and 4 chain_links (3).Unit system: MMGS (millimeter, gram, second)Decimal places: 2Assembly origin: Arbitrary-Download the attached zip file and open it.-Save the contained parts and open those parts in SolidWorks. (Note: If SolidWorks prompts "Do you want to proceed with feature recognition?" please click "No".)-IMPORTANT: Create the Assembly with respect to the Origin as shown in isometric view. (This is important for calculating the proper Center of Mass)-Create the assembly using the following conditions:1. Pins are mated concentric to chain link holes (no clearance).2. Pin end faces are coincident to chain link side faces.A = 25 degreesB = 125 degreesC = 130 degreesWhat is the center of mass of the assembly (millimeters)?Hint: If you don't find an option within 1% of your answer please re-check your assembly.a)X = 348.66, Y = -88.48, Z = -91.40b)X = 308.53, Y = -109.89, Z = -61.40c)X = 298.66, Y = -17.48, Z = -89.22d)X = 448.66, Y = -208.48, Z = -34.64Unit system: MMGS (millimeter, gram, second)Decimal places: 2Assembly origin: Arbitrary-Using the same assembly created in the previous question modify the following parameters:A = 30 degreesB = 115 degreesC = 135 degreesWhat is the center of mass of the assembly (millimeters)?Answers:1.b) Crop2.c) Broken-out Section3.d) 939.54 g4.1032.32 g5.628.18 g6.432.58 g7.a) X = 348.66, Y = -88.48, Z = -91.408.X = 327.67, Y = -98.39, Z = -102.91Hints and Tips:Hint #1: To prepare for the Drafting Competencies section of the CSWA, review all the drawing views that can be created. These commands can be found by opening any drawing and going to the View Layout command manager toolbar or in the menu Insert > Drawing View.Hint #2: For a detailed explanation of each View type, access the individual feature Help section by selecting the Help icon in the Feature Manager for that View Feature:Hint #3: For a description and walk-through of the VirtualTester testing client, please go to these links:∙Starting the exam: /index.php/support/starting_the_exam/∙During the exam: /index.php/support/during_the_exam/∙Ending the exam: /index.php/support/ending_the_exam/。
官方CSWP考试模拟题
Question 1:
A = 60
B = 64
C = 140
D = 19
What is the overall mass of the part (in grams)?
Question 2:
A = 50
B = 70
C = 160
D = 23
What is the overall mass of the part (in grams)?
SolidWorks Corporation: CSWP Sample Exam
Certified SolidWorks Professional: Solid Modeling Specialist (CSWP/CORE)
SAMPLE EXAM – Part Modeling Portion
These questions are similar to the Parametric Part Modeling portion of the CSWP exam.
SolidWorks Corporation: CSWP Sample Exam
Update part with new features/dimensions. Unit system: MMGS (millimeter, gram, second) Decimal places: 2 Part material: Brass Material Density: 0.0085 g/mm^3 Design note: no shell remaining
SolidWorks Corporation, 300 Baker Avenue, Concord, MA 01742 USA Phone:+1.800.693.9000 or +978.371.5011 ©2008 Solidd. SolidWorks is a registered trademark of SolidWorks Corporation.
CSWA 考试样题
SolidWorks Corporation: CSWA Sample Exam Certified SolidWorks Associate (CSWA) DISCLAIMER: This sample exam is provided to show you the format and approximate difficulty level of the real exam. It is not meant to give away the whole CSWA exam.These questions are an example of what to expect in the CSWA exam.How to take this sample exam:1.To best simulate the conditions of the real test, it is best NOT to print this exam. Sincethe Virtual Tester client window runs concurrently with SolidWorks you must switchback and forth between the two applications. Keeping this document open and consulting it on your computer while running SolidWorks is the best method to simulate the real test conditions.2.The multiple choice answers should serve as a check for you to ensure that your model ison the right track while completing this exam. If you do not find your answer in theselections offered then most likely there is something wrong with your model at thatpoint.3.Answers to the questions are on the last pages of this sample test document. There arealso hints that can help save time during the exam.4.If you can complete this exam and get at least 6 out of the 8 questions correctly in 90minutes or less then you should be ready to take the real CSWA exam.What you will need for the real CSWA exam:1. A computer that is running SolidWorks 2007 or higher.2.The computer must have a connection to the Internet.3. A double-monitor is recommended but not necessary.4.If you will be running the Virtual Tester client on a separate computer from the one thatis running SolidWorks, make sure there is a way to transfer files from one computer tothe other. You will be required to download SolidWorks files during the real test to beable to correctly answer some of the questions.The following is the topic and question breakdown of the CSWA exam:Drafting Competencies (3 Questions of 5 Points Each):∙Miscellaneous questions on drafting functionalityBasic Part Creation and Modification (2 Questions of 15 Points Each): ∙Sketching∙Extrude Boss∙Extrude Cut∙Modification of Key DimensionsIntermediate Part Creation and Modification (2 Questions of 15 Points Each): ∙Sketching∙Revolve Boss∙Extrude Cut∙Circular PatternAdvanced Part Creation and Modification (3 Questions of 15 Points Each): ∙Sketching∙Sketch Offset∙Extrude Boss∙Extrude Cut∙Modification of Key Dimensions∙More Difficult Geometry ModificationsAssembly Creation (4 Questions of 30 Points Each):∙Placing of Base Part∙Mates∙Modification of Key Parameters in AssemblyTotal Questions: 14Total Points: 240165 out of 240 points needed to pass the CSWA.The sample test below will show the basic format of the CSWA exam in three sections: ∙Drafting Competencies∙Part Modeling∙Assembly CreationSAMPLE TESTDrafting Competencies:1.To create drawing view ‘B’ it is necessary to sketch a spline (as shown) on drawing view ‘A’and insert which SolidWorks view type?a)Sectionb)Cropc)Projectedd)Detail2.To create drawing view ‘B’ it is necessary to sketch a spline (as shown)on drawing view ‘A’and insert which SolidWorks view type?a)Aligned Sectionb)Detailc)Broken-out Sectiond)SectionPart Modeling: (These images are to be used to answer Questions #3 – 4)3.Part (Tool Block) - Step 1Build this part in SolidWorks.(Save part after each question in a different file in case it must be reviewed)Unit system: MMGS (millimeter, gram, second)Decimal places: 2Part origin: ArbitraryAll holes through all unless shown otherwise.Material: AISI 1020 SteelDensity = 0.0079 g/mm^3A = 81.00B = 57.00C = 43.00What is the overall mass of the part (grams)?Hint: If you don't find an option within 1% of your answer please re-check your solid model.a)1028.33b)118.93c)577.64d)939.544.Part (Tool Block) - Step 2Modify the part in SolidWorks.Unit system: MMGS (millimeter, gram, second)Decimal places: 2Part origin: ArbitraryAll holes through all unless shown otherwise.Material: AISI 1020 SteelDensity = 0.0079 g/mm^3Use the part created in the previous question and modify it by changing the following parameters:A = 84.00B = 59.00C = 45.00Note: Assume all other dimensions are the same as in the previous question.What is the overall mass of the part (grams)?Part Modeling: (These images are to be used to answer Question #5)5.Part (Tool Block) - Step 3Modify this part in SolidWorks.Unit system: MMGS (millimeter, gram, second)Decimal places: 2Part origin: ArbitraryAll holes through all unless shown otherwise.Material: AISI 1020 SteelDensity = 0.0079 g/mm^3Use the part created in the previous question and modify it by removing material and also by changing the following parameters:A = 86.00B = 58.00C = 44.00What is the overall mass of the part (grams)?Part Modeling: (These images are to be used to answer Question #6)6.Part (Tool Block) - Step 4Modify this part in SolidWorks.Unit system: MMGS (millimeter, gram, second)Decimal places: 2Part origin: ArbitraryAll holes through all unless shown otherwise.Material: AISI 1020 SteelDensity = 0.0079 g/mm^3Use the part created in the previous question and modify it by adding a pocket.Note 1: Only one pocket on one side is to be added. This modified part is not symmetrical. Note 2: Assume all unshown dimensions are the same as in the previous question #5. What is the overall mass of the part (grams)?Assembly Modeling: (These images are to be used to answer Question #7 and 8)It contains 2 long_pins (1), 3 short_pins (2), and 4 chain_links (3).Unit system: MMGS (millimeter, gram, second)Decimal places: 2Assembly origin: Arbitrary-Download the attached zip file and open it.-Save the contained parts and open those parts in SolidWorks. (Note: If SolidWorks prompts "Do you want to proceed with feature recognition?" please click "No".)-IMPORTANT: Create the Assembly with respect to the Origin as shown in isometric view. (This is important for calculating the proper Center of Mass)-Create the assembly using the following conditions:1. Pins are mated concentric to chain link holes (no clearance).2. Pin end faces are coincident to chain link side faces.A = 25 degreesB = 125 degreesC = 130 degreesWhat is the center of mass of the assembly (millimeters)?Hint: If you don't find an option within 1% of your answer please re-check your assembly.a)X = 348.66, Y = -88.48, Z = -91.40b)X = 308.53, Y = -109.89, Z = -61.40c)X = 298.66, Y = -17.48, Z = -89.22d)X = 448.66, Y = -208.48, Z = -34.64Unit system: MMGS (millimeter, gram, second)Decimal places: 2Assembly origin: Arbitrary-Using the same assembly created in the previous question modify the following parameters:A = 30 degreesB = 115 degreesC = 135 degreesWhat is the center of mass of the assembly (millimeters)?Answers:1.b) Crop2.c) Broken-out Section3.d) 939.54 g4.1032.32 g5.628.18 g6.432.58 g7.a) X = 348.66, Y = -88.48, Z = -91.408.X = 327.67, Y = -98.39, Z = -102.91Hints and Tips:Hint #1: To prepare for the Drafting Competencies section of the CSWA, review all the drawing views that can be created. These commands can be found by opening any drawing and going to the View Layout command manager toolbar or in the menu Insert > Drawing View.Hint #2: For a detailed explanation of each View type, access the individual feature Help section by selecting the Help icon in the Feature Manager for that View Feature:Hint #3: For a description and walk-through of the VirtualTester testing client, please go to these links:∙Starting the exam: /index.php/support/starting_the_exam/∙During the exam: /index.php/support/during_the_exam/∙Ending the exam: /index.php/support/ending_the_exam/。
PCCW笔试题
一.不定项选择(20题,每题3分,共60分)1.下列说法错误的有()A.数组是一种对象B.数组属于一种原生类C.int number=[]={31,23,33,43,35,63}D.数组的大小可以任意改变2. 不能用来修饰interface的有()A.private B.public C.protected D.static3. 下列说法错误的有()A.在类方法中可用this来调用本类的类方法B.在类方法中调用本类的类方法时可直接调用C.在类方法中只能调用本类中的类方法D.在类方法中绝对不能调用实例方法4.下列说法错误的有()A.能被java.exe成功运行的java class文件必须有main()方法B.JAVASDK就是Java APIC.Appletviewer.exe可利用jar选项运行.jar文件D.能被Appletviewer成功运行的java class文件必须有main()方法5.下列说法错误的有()A.Java面向对象语言容许单独的过程与函数存在B.Java面向对象语言容许单独的方法存在C.Java语言中的方法属于类中的成员(member)D.Java语言中的方法必定隶属于某一类(对象),调用方法与过程或函数相同6. 执行如下程序代码a=0;c=0;do{--c;a=a-1;}while(a>0);后,C的值是()A.0 B.1 C.-1 D.死循环7. 下面哪个是正确的类声明?假设每一段文本都做为一个名称为Fred.java 的文件的全部内容?( )a).public class Fred{public int x = 0;public Fred (int x){this.x=x;}}b).public class fred{public int x = 0;public Fred (int x){this.x=x;}}c).public class Fred extends MyBaseClass, MyOtherBaseClass{ public int x = 0;public Fred(int xval){x=xval;}}d).protected class Fred{private int x = 0;private Fred (int xval){x=xval;}}a) B. b) C. c) D. d)8. 现有下列代码片断:switch(x){case 1: System.out.println("Test 1");break;case 2:case 3: System.out.println("Test 2");break;default: System.out.println("end");}X为何值时将输出"Test 2" ( )A. 1或2B. 1或2或3C. 2或3D. 3E. default9. "|DF|A".split("|").length的结果是( )A 2B 3C 5D 610.以下哪个为真 ( )Interger a = new Interger(9);Interger b = new Interger(9);Long c = New Long(9);A. a==bB. b==cC. a.equals(b)D. b.equals(new Interger(9))11. 下面哪些运算符不能被重载?()A. 做用域运算符“::”B. 对象成员运算符“.”C. 指针成员运算符“->”D. 三目运算符“? :”12. 下面哪些是句柄(HANDLE)?()A. HINSTANCE 实例句柄B. HWND 窗口句柄C. HDC 设备描述符号句柄D. HFONT 字体句柄13. 下面哪些不是OpenGL标准几何元素的绘制模式?()A. GL_FOGB. GL_LINE_STRIPC. GL_POINTSD. GL_TRIANGLE_FAN14. 下面四个选项中,哪一个不是WinMain函数的参数?()A. HINSTANCEB. INTC. LPSTRD. WPARAM15. 现在最快且最通用的排序算法是什么?()A. 快速排序B. 冒泡排序C. 选择排序D. 外部排序16. 从数据库读取记录,你可能用到的方法有:( )A. ExecuteNonQueryB. ExecuteScalarC. FillD. ExecuteReader17. 您要创建一个显示公司员工列表的应用程序。
微软Microsoft招聘笔试题及答案
微软Microsoft招聘笔试题及答案1.求下面函数的返回值int func(x){int countx = 0;while(x){countx ++;x = x&(x-1);}return countx;}假定x = 9999。
答案:8思路:将x转化为2进制,看含有的1的个数。
2. 什么是“引用〞?申明和使用“引用〞要注意哪些问题?答:引用就是某个目标变量的“别名〞(alias),对应用的操作与对变量直接操作效果完全一样。
申明一个引用的时候,切记要对其进展初始化。
引用声明完毕后,相当于目标变量名有两个名称,即该目标原名称和引用名,不能再把该引用名作为其他变量名的别名。
声明一个引用,不是新定义了一个变量,它只表示该引用名是目标变量名的一个别名,它本身不是一种数据类型,因此引用本身不占存储单元,系统也不给引用分配存储单元。
不能建立数组的引用。
3. 将“引用〞作为函数参数有哪些特点?〔1〕传递引用给函数与传递指针的效果是一样的。
这时,被调函数的形参就成为原来主调函数中的实参变量或对象的一个别名来使用,所以在被调函数中对形参变量的操作就是对其相应的目标对象〔在主调函数中〕的操作。
〔2〕使用引用传递函数的参数,在内存中并没有产生实参的副本,它是直接对实参操作;而使用一般变量传递函数的参数,当发生函数调用时,需要给形参分配存储单元,形参变量是实参变量的副本;如果传递的是对象,还将调用拷贝构造函数。
因此,当参数传递的数据较大时,用引用比用一般变量传递参数的效率和所占空间都好。
〔3〕使用指针作为函数的参数虽然也能到达与使用引用的效果,但是,在被调函数中同样要给形参分配存储单元,且需要重复使用"*指针变量名"的形式进展运算,这很容易产生错误且程序的阅读性较差;另一方面,在主调函数的调用点处,必须用变量的地址作为实参。
而引用更容易使用,更清晰。
4. 在什么时候需要使用“常引用〞?如果既要利用引用提高程序的效率,又要保护传递给函数的数据不在函数中被改变,就应使用常引用。
CSWA考试样题
Certified SolidWorks Associate (CSWA)考试样题题1参照下图构建模型,单位制为: MMGS (毫米millimeter, 克gram, 秒second),小数位数: 2。
零件原点: 绝对坐标值 A = 63 B = 50 C = 100 。
所有孔均为通孔l. 零件材料:铜,密度为0.0089 g/mm^3请问:零件的总重为____________克?a) 1205 ;b) 1280 ;c) 144 ;d) 1108 。
(注意: 本题限时30分钟)COSMOSXPress 允许更改网格的设置. 下面那个描述是错误的?a) 良好的网格设置科产生更精确的分析结果;b) 一个较粗的网格设置相比较精确的网格设置产生的分析结果精度较低;c) 可以单独针对一个模型表面,设置较模型其他区域更为精细的网格;d) 以上都对(注意: 本题限时5分钟)题3.为了生成视图B,需要在视图A上绘制一个样条曲线,请问视图B是哪种类型试图?a) 断开的剖视图b) 投影视图c) 剖面视图d) 详细视图(注意:本题限时5分钟)构建下图所示的装配件,其中包括三个托架和两个联接销。
托架: 厚度2 mm,形状尺寸相同(孔均为通孔),折弯半径1 mm,K因子为0.5。
联接销: 长度为5 mm,直径相等。
联接销与托架上的孔为同心配合(无缝隙).联接销端面与托架表面平齐。
在托架之间存在1mm的间隙.托架之间的安装角相同,均为450.单位制:MMGS (毫米,克,秒),小数位数: 2。
装配件坐标原点:如上图。
所有零件均采用钛,密度为0.0046 g/mm^3问:装配件的中心应为:________a) x=40.27 y=23.95 z=21.42b) x=40.26 y=24.16 z=21.20c) x=40.29 y=24.10 z=21.24d) x=40.34 y=24.31 z=20.93(注意:此题限时30分钟)为了更好的准备CSWA考试,建议考生在考前完成SolidWorks附带的在线教程(此教程通过在SolidWorks中选择[帮助]>[SolidWorks 指导教程]开启)。
SolidworksCSWA全球助理工程师认证考试题精选
首先打开需要进行干涉检查的装配体文件,然后选择“评 估”选项卡中的“干涉检查”命令,接着选择要检查干涉 的零部件或组件,最后查看干涉检查结果并相应调整零部 件位置。
解析
干涉检查是装配体设计过程中的重要步骤,用于检测零部 件之间的冲突或重叠。通过干涉检查可以及时发现并修正 设计中的问题,确保装配体的正常运行。
02
答案:旋转凸台/基体
03
解析:旋转特征是SolidWorks中常用的特征之一,通过 “旋转凸台/基体”命令可以创建出以中心轴旋转一定角 度的实体。
04
填空题2:在装配体中,如果要使两个零部件之间保持固定, 应该选择________配合类型。
05
答案:固定
06
解析:固定配合类型用于将两个零部件固定在一起,使得 它们无法相对移动或旋转。
solidworkscswa全 球助理工程师认证考
试题精选
目录
• 考试简介 • 精选题目展示 • 题目解析与答案 • 备考建议和策略
01
考试简介
考试目的和意义
提升个人技能
通过考试可以证明考生具备 SolidWorks软件的基本操作和工 程设计能力,提升个人技能和竞 争力。
获得认证
通过考试可以获得CSWA全球助 理工程师认证,证明考生具备专 业知识和技能,为职业发展提供 有力支持。
简答题2
在SolidWorks中绘制草图时,如何进行几何约束?请列举三种几何约束类型。
03
题目解析与答案
选择题解析与答案
选择题1
关于SolidWorks软件中草图绘制的功能,以下哪个描述 是正确的?
答案
A. 可以绘制不同几何约束的草图。
解析
草图是SolidWorks中创建特征的基础,它支持各种几何 约束,如平行、垂直、相切等,使得用户能够绘制出满足 设计需求的草图。
国计算机技术与软件专业技术资格(水平)考试试题
国计算机技术与软件专业技术资格(水平)考试试题>例题● 2008 年下半年全国计算机技术与软件专业技术资格(水平)考试日期是(88)月(89)日。
(88)A. 11B. 12 C. 10D. 9(89)A. 18 B. 19 C. 20D. 21因为考试日期是“12 月 21 日“,故(88)选 B,(89)选 D,应在答题卡序号 88 下对 B 填涂,在序号 89 下对 D 填涂(参看答题卡)。
● 某订单处理系统中,“创建新订单“和“更新订单“两个用例都需要检查客户的账号是否正确,为此定义一个通用的用例“核查客户账户“。
用例“创建新订单“和“更新订单“与用例“核查客户账户“之间是(1)。
(1)A. 包含关系 B. 聚合关系 C. 泛化关系 D. 关联关系● UML 的事物是对模型中最具有代表性的成分的抽象,(2)是模型的静态部分,描述概念或物理元素;(3)用来描述、说明和标注模型的任何元素。
(2)A. 结构事物 B.分组事物 C. 行为事物D. 注释事物(3)A. 分组事物 B. 注释事物 C. 结构事物 D. 行为事物● UML 用关系把事物结合在一起,(4)描述一个事物发生变化会影响另一个事物的语义;(5)描述特殊元素的对象可替换一般元素的对象。
(4)A. 聚合关系 B. 关联关系 C. 包含关系 D. 依赖关系(5)A. 实现关系 B. 聚合关系 C. 泛化关系D. 关联关系● 常用对称加密算法不包括(6)。
(6)A. DES B. RC-5 C. IDEA D. RSA● 数字签名的功能不包括号(7)。
(7)A. 防止发送方和接收方的抵赖行为 B. 发送方身份确认C. 接收方身份确认D. 保证数据的完整性● TCP/IP 在多个层次中引入了安全机制,其中 SSL(Security Socket Layer)协议位于(8)。
号(8)A. 数据链路层B. 网络层C. 传输层D. 应用层● 下列安全协议中,(9)能保证交易双方无法抵赖。
CSWP认证考试大纲
SolidWorks(CSWP)认证考试大纲一、考试大纲SolidWorks公布的考试大纲包括如下内容,这些内容基本涵盖了SolidWorks建模技术、工程图等多方面内容,因此,考生必须掌握这些内容并熟练应用。
作为普通终端用户参加考试的考生,考试的总分为500分,通过CSWP的成绩为400(即必须达到80%的合格率)。
作为SolidWorks员工或者代理商员工参加CSWP考试,必须至少选择两个高级题目,总分600分,达到90%以上才能算通过CSWP。
SolidWorks公司公布的考试大纲可以从网上找到(/certification),这些大纲的要求可能由于软件更新而变化。
·建模技术·建立和编辑模型·解决草图和模型问题·草图属性·尺寸属性·工具栏及其功能·参考几何体-曲面、曲线、螺旋线等·配置·建立和编辑装配体·时间相关的特征·配合、配合组及其属性·自底向上的装配体设计和自顶向下的装配体设计·装配体配置及其应用·材料名细表和自定义属性·工程图和出样图·建立工程图·建立和应用工程视图·剖面视图和局部放大图·工程图属性·工程图图纸格式—标准图纸格式和自定义图纸格式·连接属性的注释和标题栏·建立参数注释·设计意图·把握零件的设计意图·系列零件设计表·连接数值·方程式·关联参考·文件管理·“另存为”和“另存为备份”·输出不同的文件格式及其选项(如IGES,STEP,DXF)等·从其他CAD软件中输入文件·外部参考·自定义属性·SolidWorks工具·特征调色板·设置外部参考·建立和使用调色板零件、调色板特征和成型工具·草图工具·理解测量工具的用法:垂直距离和投影距离·质量属性选项·理解检查实体工具·使用方程式·使用宏二、考试内容CSWP考试时间为8个小时,大约从早上9点开始,到下午5点结束。
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
CSWP笔试部份考试样题
1,一个切除拉伸的装配体特征是时间相关特征。
A) True
B) False
2,在工程图中,要控制装配体中留在剖面视图中不剖切的零部件,您必须编辑:
A) 特征范围
B) 剖面范围
C) 剖切线属性
D) 剖面视图的属性
3,当你在创建草图时,有两种的推理线帮助你更加高效地工作。
兰色推理线表示自动加上几何关系,棕色推理线表示不加关系。
A) True
B) False
4,下列哪些是在装配体系列零件设计表中无效的表头?
$备注
$属性
$零件号
$用户注释
5,在你装配零件以前,你必须获得零件的写权限。
A) True
B) False
6,如果材料清单太长,可以把它分成几个部份。
A) True
B) False
7,在装配体中对两个圆柱面做同轴心配合时,应该选择:
A) 圆柱端面的圆形边线
B) 或者是圆柱面或者是圆形边线
C) 通过圆柱中心的临时轴
D) 以上所有
8,当编辑草图进,状态栏有三种描述,正确的是
A) 欠定义、完全定义和冲突
B) 开放、封闭和还原
C) 派生、上下相关联和悬空
D) 欠定义、过定义和完全定义
9,在零件或装配体特征管理器中->符号是表示什么含义
A) 特征或零件有一个外部参考
B) 特征或零件没有关联
C) 特征或零件有重建错误
D) 特征或零件欠定义
10,如果将一个零件转化成钣金零件,这个零件的厚度必须保持一致。
A) True
B) False
11, 文件在转换和保存之后,可以还原为以前的SolidWorks 版本。
A) True
B) False
12, 您在工程图中生成了剖面视图,但发现方向不正确。
如何改变剖面视图的方向?
A) 选择该视图,单击"工具"、"工程视图"。
在"旋转剖视图"对话框中单击"反向"。
B) 选择剖切线和修改草图工具。
在"修改草图"对话框中,单击"反向"。
C) 双击剖切线。
D) 选择剖切线和镜向工具。
13, 如果选择模型边线,然后单击草图绘制工具,SolidWorks 将会:
A) 生成一个垂直于所选边线的参考基准面(其原点在您选择边线位置的最近端),然后在新基准面上打开草图。
B) 报告一个错误,表示您必须先选择一个基准面或模型面才能生成草图。
C) 打开一个3D 草图
D) 编辑您选择的草图。
14, 要使装配体中的零部件透明,请:
A) 右键单击零部件并选择"外观"、"透明度"。
B) 右键单击零部件并选择"更改透明度"。
C) 右键单击零部件并选择"属性"。
D) 以上都不是。
15 SolidWorks 文件在转换和保存之后,可以还原为以前的SolidWorks 版本。
A) True
B) False
16 加入装配体的初始零件默认为固定的。
A) True
B) False
17,在圆柱面上可以直接生成异形孔向导孔。
A) True
B) False
18, 以下哪一项不足以定义基准轴?
A) 两点/顶点
B) 原点
C) 两平面
D) 圆柱/圆锥面
19, 使用SmartMates 时,SolidWorks 可让您使用以下键将零部件的面方向从同向对齐变为反向对齐:
A) Ctrl 键
B) Tab 键
C) Shift 键
D) Alt 键
20, 您无法在装配体的FeatureManger 设计树中重新排序零部件。
A) True
B) False。