57 Quality assurance
A. refers to the prevention of product defects
B. is an auditing function that provides feedback to the project team and client about the quality of output being produced.
C. is the technical process that include the construction of control charts which specify acceptability limits for conforming output.
D. A and B.
E. B and C
第1题:
S9300上配置AAA功能,可以对用户进行()
A审计(Auditing)
B计费(Accounting)
C授权(Authorization)
D认证(Authentication)
第2题:
第3题:
41、已知程序如下,该程序实现的功能为_____。 (10) main() (20) { int counter; (30) ... //输入N值的语句,略 (40) long product = 1; (50) for counter = 1 to N step 2 (60) { product = product * counter; } (70) return product; (80) }
A.product = 1*3*5*...* (N-1)
B.product = 1*2*3*...*(N-1)
C.product = 1+ 2+3+...+ (N-1)
D.product = 1+3+5+...+(N-1)
第4题:
业务保障(Assurance)负责及时和正确的处理账单和收费。
此题为判断题(对,错)。
第5题:
已知程序如下,该程序实现的功能为_____。 (10) main() (20) { int counter; (30) ... //输入N值的语句,略 (40) long product = 1; (50) for counter = 1 to N step 2 (60) { product = product * counter; } (70) return product; (80) }
A.product = 1*3*5*...* (N-1)
B.product = 1*2*3*...*(N-1)
C.product = 1+ 2+3+...+ (N-1)
D.product = 1+3+5+...+(N-1)
第6题:
如下程序用来计算公式1!+2!+3!+…+10!,请完善程序。 #include <iostream> using namespace std; int main() { int i,j,sum,product; cout<<"1!+2!+3!+.......+10!= "; sum=【1】; for (【2】) { product=【3】; for (【4】) { product*=j; } sum+=product; } cout<<sum<<endl; return 0; }