Who is responsible for quality control?质量控制由谁来实施?
A. Project team members 项目团队成员
B. Quality control department 质量控制部门
C. Senior management 高级管理层
D. Functional manager 职能部门经理
查看答案
Which chart helps a project manager determine possible causes of potential problems and actualproblems?哪种图表可以帮助项目经理判断引起潜在问题和实际问题的原因?
A. The 50/50 rule 50/50法则
B. A fishbone diagram 鱼骨图
C. A control chart 控制图
D. A Pareto chart 帕累托图
A project manager decides to lock into risk and issues faced by the project,the project manager uses an Ishikawa diagram. This technique is an example of which of the following?项目经理决定调查项目所面临的风险和问题,项目经理使用了石川图。这项技术属于以下哪一项的例子?
A. Flowchart 流程图
B. Histogram 直方图
C. Root Cause Analysis 根本原因分析
D. SWOT analysis SWOT分析
You are asked to select tools and techniques to implement a quality assurance program to supplement existing quality control activities. Which of the following would you choose?你被要求选择工具和技术来改进质量保证程序来支持目前的质量控制活动。你应该选择下面哪项?
A. Quality audits 质量审计
B. Statistical sampling 统计抽样
C. Pareto diagrams 帕累托图
D. Trend analysis 趋势分析
(7-7)阅读程序,写出程序运行结果。//写出程序运行结果classEye{//猫的眼睛类privateStringcolor;publicEye(Stringcolor){this.color=color;}}classCat{//猫类privateStringname;privateEyeeye;publicCat(Stringname,Eyeeye){this.name=name;this.eye=eye;}publicbooleanequals(Objectobj){Catcat=(Cat)obj;if(this.name.equals(cat.name)&&this.eye==cat.eye)returntrue;returnfalse;}}publicclassCatDemo{publicstaticvoidmain(String[]args){Eyee1=newEye("蓝色");Eyee2=newEye("蓝色");Cattom1=newCat("Tom",e1);Cattom2=newCat("Tom",e2);System.out.println(tom1==tom2);System.out.println(tom1.equals(tom2));}}