软件工程质量管理体系要求_软件质量管理| 软件工程

软件工程质量管理体系要求

软件质量管理体系 (Software quality management system)

A quality management system frequently mentioned as a standard system is a principal scheme used by organizations to ensure that the products they develop have the desired quality. Software Quality Management makes sure that the required level of quality is attained by submitting corrections to the product development process. SQA aims to develop a civilization within the team and it is seen as everyone's authority.

经常被称为标准系统的质量管理系统是组织用来确保他们开发的产品具有所需质量的主要方案。 通过对产品开发过程进行更正,软件质量管理可以确保达到所需的质量水平。 SQA旨在在团队内部发展文明,这被视为每个人的权威。

Software quality management should be independent of project management to ensure the independence of cost and schedule adherence. It directly affects the process quality and indirectly affects product quality.

软件质量管理应独立于项目管理,以确保成本和进度遵循的独立性。 它直接影响过程质量,间接影响产品质量。

A quality system consists of the following,

质量体系包括以下内容:

Managerial Structure and Individual Responsibilities: A standard system is basically the power of the company as a whole. However, every company has a separate quality section to perform several quality system pursuits. The standard system of a company should have support from the top management.

管理层结构和个人职责 :标准体系基本上是整个公司的权力。 但是,每个公司都有单独的质量部门来执行多项质量体系追求。 公司的标准体系应得到高层管理人员的支持。

质量体系活动 (Quality System Activities)

The quality system activities surround the following,

质量体系活动围绕以下内容,

  • Inspect of projects

    检查项目

  • Review of the standard protocol

    审查标准协议

  • Development of standards, policy, and instructions, etc.

    制定标准,政策和指示等

软件质量缺陷管理 (Software Quality Defect Management)

A software defect can be considered as any failure to label end-user needs. Common defects include mishear or misunderstood needs and mistakes in design, functional logic, data connection, process scheduling, logic checking, and coding mistakes.

可以将软件缺陷视为标记最终用户需求的任何失败。 常见的缺陷包括杂念或被误解的需求以及设计,功能逻辑,数据连接,过程调度,逻辑检查和编码错误中的错误。

The software defect control approach is based on adding up and heading defects. Defects are commonly classified by seriousness, and the numbers in each class are used for planning. More fully-grown software development companies use tools, such as defect escape matrices for counting the numbers of mistakes that pass through making phases previous to detection and control charts, to measure and improve development process capacity.

软件缺陷控制方法基于缺陷的总和。 缺陷通常按照严重性进行分类,并且每个类别中的数字都用于计划。 越来越成熟的软件开发公司使用诸如缺陷逃逸矩阵之类的工具来计算在检测和控制图之前的制造阶段所经历的错误数量,以衡量和提高开发过程的能力。

软件质量属性方法 (Software Quality Attributes Approach)

This method is used to check that software quality is best to typify by fixed quality models. This model describes a ranking of eight quality features, each composed of sub-characteristics,

此方法用于检查软件质量最好以固定质量模型来代表。 此模型描述了八个质量特征的等级,每个特征由子特征组成,

  • Functional suitability

    功能适用性

  • Reliability

    可靠性

  • Operability

    可操作性

  • Performance efficiency

    绩效效率

  • Security

    安全

  • Compatibility

    兼容性

  • Maintainability

    可维护性

  • Transferability

    可转让性

Additionally, the standard defines a quality-in-use model made of five characteristics,

此外,该标准还定义了由五个特征组成的使用质量模型,

  • Effectiveness

    效用

  • Efficiency

    效率

  • Satisfaction

    满意

  • Safety

    安全

  • Usability

    易用性

翻译自: https://www.includehelp.com/basics/software-quality-management-software-engineering.aspx

软件工程质量管理体系要求

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/545348.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

英语笔记:写作:Recreational activities

Recreational activities 娱乐活动 Nowadays, in an era of information and technology, abundant recreational activities areavailable for people to release their stain and stress, ranging from sports tosurfing the internet. There is a hot debate going on argu…

Redis 如何实现限流功能?

“限流”这种事在生活中很常见,比如逢年过节时景点的限流,还有工作日的车辆单双号限流等,有人可能会问为什么要限流?我既然买了车子你还不让我上路开?还有我倒景点买了门票,景点不是能赚更多的钱吗?为什么要限流呢? 其实限流的主要目的就是为了保证整个系统的正常运行…

第三四五章(PTA复习)

第三四五章类的构造与继承异常线程类的构造与继承 加 final 唯一可以说明的是该类不可被继承,另外和其它类是一样的 abstract类是抽象类,必须要被继承才能实现,而final修饰的类不能被继承 异常 由于未捕获到异常,所以执行完final…

switch(封装)

#迭代器class switch(object):def __init__(self,value):self.valuevalueself.fallFalse#迭代器方法def __iter__(self):yield self.matchraise StopIterationdef match(self,*args):if self.fall or not args:return Trueelif self.value in args:self.fallTruereturn Trueels…

stl max函数_C ++ STL中带有示例的array :: max_size()函数

stl max函数C STL array :: max_size()函数 (C STL array::max_size() function) max_size() function is a library function of array and it is used to get maximum size of an array. It returns the total number of elements that an array can hold. max_size()函数是…

Redis 属于单线程还是多线程?不同的版本有什么区别?

Redis 是普及率最高的技术之一,同时也是面试中必问的一个技术模块,所以从今天开始我们将从最热门的 Redis 面试题入手,更加深入的学习和了解一下 Redis。 我们本文的面试题是 Redis 属于单线程还是多线程? 典型回答 本文的问题…

英语笔记:词组句子:0906

income 收入 mostly 大部门 particularly 尤其、特别 larger drops 更大幅度的下降 thanks to 由于 liable to 易于、可能 in terms of 在……方面 in view of 鉴于、考虑到 over time 随着时间过去 against time 争分夺秒 on time 准时 behind time 误期 widening…

【原创】STM32下波特率计算详解

波特率的计算STM32下的波特率和串口外设时钟息息相关,USART 1的时钟来源于APB2,USART 2-5的时钟来源于APB1。在STM32中,有个波特率寄存器USART_BRR,如下: STM32串口波特率通过USART_BRR进行设置,STM32的波特…

java对数组进行排序_用Java对数组进行排序所需的最少交换

java对数组进行排序Problem: 问题: In this problem, we would have an unordered array with consecutive distinct natural numbers [1,2,3,..n], where n is the size of the array. We have to find the minimum number of swaps required to sort the array i…

如何实现查询附近的人?

查询附近的人或者是附近的商家是一个实用且常用的功能,比如微信中“附近的人”或是美团外卖中“附近商家”等,如下图所示: 那它是如何实现的呢?我们本文就一起来看。 我们本文的面试题是,使用 Redis 如何实现查询附近的人? 典型回答 在说如何实现地理位置查询之前,首…

英语笔记:词组句子:0712

Define sth as … 定义为…… Tie sth to sth 制约 Derive from源自于 Descend from 从……承袭下来 Divide from 分开、隔开 Distinguished from 区别于 Related to 与……有联系 Refer to 查阅、涉及 Attach to 附在……上、系在……上 Associate with 与……有联系…

第五六七章(PTA复习)

第五六七章图形界面线程IO图形界面 主要的布局管理器类包括流布局(FlowLayout)、边界布局(BorderLayout)、网格布局(GridLayout)、卡 片 布 局 (CardLayout) 、 网 格 包 布 局(CardBagLayout) 线程 答案:B IO

Eclipse jetty和plugin 的结合使用

Jetty做为一个轻量级的J2EE Web application server,它不仅小巧,而且性能也比较稳定,效率也挺高,现在也越来越得到广泛的应用。特别是eclipse平台集成了Jetty Plugin后,更是对RCP整合Web Server开发提供了极大的方便。…

python布尔运算符_Python中布尔的逻辑和按位NOT运算符

python布尔运算符In python, not is used for Logical NOT operator, and ~ is used for Bitwise NOT. Here, we will see their usages and implementation in Python. 在python中, not用于逻辑NOT运算符,而〜用于按位NOT。 在这里,我们将看…

英语笔记:作文:What elective to choose

What elective to choose 选修课的选择 Nowadays, thereexist a wide range of selective courses in college which are ready for theundergraduates to choose from. These courses make the students’ college lifemore colorful. However, as for the purpose of choosi…

Redis 有哪些数据类型?

Redis 的数据类型可谓是 Redis 的精华所在,同样的数据类型,例如字符串存储不同的值对应的实际存储结构也是不同,当你存储的 int 值是实际的存储结构也是 int,如果是短字符串(小于 44 字节)实际存储的结构为…

导出/入数据库

导出/入数据库1、以SQL文件的方式1.1导出1.2 导入2、以mdf和ldf数据库文件的方式2.1导出2.1.1 脱机2.1.2 到数据库的数据路径,拷贝出mdf,ldf文件2.1.3 将原数据库设置为online状态即可正常使用2.2导入数据库(切记导入之前要先将控制权限打开)…

arm中clz指令_JavaScript中带有示例的Math.clz32()方法

arm中clz指令JavaScript | Math.clz32()方法 (JavaScript | Math.clz32() Method) Math.clz32() is a function in math library of JavaScript that is used to find the number of leading zeroes in the 32-bit representation of the number. The method will return the n…

Oracle 创建用户 scott 例

在OracleXE中创建scott用户1、打开SQL*Plus,以 sys用户登录数据库 connect / as sysdba2、依次执行下面命令 --DROP USER scott CASCADE; CREATE USER scott IDENTIFIED BY tiger; GRANT connect,resource TO scott; GRANT CREATE DATABASE LINK, CREATE MATERIALIZ…

第八章Transact-SQL程序设计

第八章Transact-SQL程序设计8.1_变量8.1.1_局部变量8.1.2_全局变量8.2_流程控制语句8.2.1_IF...ELSE语句8.2.2_while循环语句8.1_变量 8.1.1_局部变量 局部变量的声明定义: Declare Variable_name Datatype[, Variable_name Datatype]…--举例: decla…