排列图又叫( )。它是将质量改进项目从最重要到最次要顺序排列而采用的一种图表。
A. 直方图
B. 帕累托图
C. 鱼骨图
D. 散布图
查看答案
A compound statement consists one or more statements contained between two ( ).
A. {}
B. ()
C. []
What is the value of the result variable after the following if-else chain?-CODE---int num = 5;int result = 0;if (num > 100)result = 1;else if (num == 3)result = 2;else if (num < 20)result = 3;elseresult = 4;-CODE---
A. 1
B. 2
C. 3
D. 4
E. 0