Affinity diagrams are used to:
A . determine if a process is in control.
B . determine root cause.
C . show the relationship among variables.
D . categorize large amounts of data.
E . None of the above.
第1题:
A、事物(Things)
B、函数(function)
C、关系(Relationships)
D、图(Diagrams)
第2题:
●下面Linux命令中, (62)可用于关闭系统。
(62)
A. [root@root]#init 0
B. [root@root]# init 1
C.[root@root]# init 2
D. [root@root]#init 3
第3题:
第4题:
A. show ip ospf [process - id] interface
B. show ip ospf neighbor
C. show ip ospf [process - id]
D. show ip ospf [process - id area - id] database
第5题:
●在Linux中,可以使用命令(63)来给test文件赋予执行权限。
(63)
A. [root@root]#chmod -x test
B. [root@root]#chmod +x test
C. [root@root]#chmod -w test
D. [root@root]#chmod +w test
第6题:
14、二叉树的先序遍历的递归实现如下: template<class T> void BinaryTree<T>::PreOrder (BinaryTreeNode<T> *root) { if (root != NULL) { ; } } 则中间部分应为:
A.Visit(root->value());PreOrder(root->leftchild());PreOrder(root->rightchild());
B.PreOrder(root->leftchild());Visit(root->value());PreOrder(root->rightchild());
C.PreOrder(root->rightchild());Visit(root->value());PreOrder(root->leftchild());
D.PreOrder(root->leftchild());PreOrder(root->rightchild());Visit(root->value());