多选题Which two statements are true about a Work Item with "Open" Notification? ()(Choose two.)AThe Work Item is not eligible for Purge.BThe Work Item is eligible for a Permanent purge.CThe Work Item is eligible for a Temporary purge.DThe Work Item is not co

题目
多选题
Which two statements are true about a Work Item with "Open" Notification? ()(Choose two.)
A

The Work Item is not eligible for Purge.

B

The Work Item is eligible for a Permanent purge.

C

The Work Item is eligible for a Temporary purge.

D

The Work Item is not complete because it still has Open Notification.

E

The Work Item is eligible for both Temporary and Permanent purge.

如果没有搜索结果或未解决您的问题,请直接 联系老师 获取答案。
相似问题和答案

第1题:

对一个风险事件的临时应对措施叫做:( )

A.工作项(work item)

B.工作包(work package)

C.权变措施(workaround)

D.工作分解结构(work breakdown structure)


正确答案:C
权变措施(workaround)是指为了应对那些事先没有识别出的或者是已经接受的风险而采取的临时应对措施。

第2题:

●The project budget has been finalized.Additional work has been discovered that was not planned for in the budget or project scope.(74) could provide the fund to cover the newly discovered work item.

(74) A. Contingency reserve

B. Project profit

C. Management reserve

D. Special fund


正确答案:C

第3题:

You have been assigned as a project leader and must first review the statement of work provided by the customer. Which of the following is most often overlooked?

A.Data item deliverables

B.Customer-furnished equipment and facilities

C.Long-lead procurement items

D.Customer-imposed milestones

E.Other subcontractor interface requirements


正确答案:A

第4题:

An application needs a table for each connection that tracks the ID and Name of all items previously ordered and committed within the connection. The table also needs to be cleaned up and automatically removed each time a connection is ended. Assuming the ITEMS table was created with the following SQL statement:CREATE TABLE items item_no INT, item_name CHAR(5), item_qty INT)Which of the following SQL statements will provide the table definition that meets the specified requirements?()

A.DECLARE GLOBAL TEMPORARY TABLE tracker AS (SELECT item_no, item_name FROM items) WITH NO DATA ON COMMIT PRESERVE ROWS ON DISCONNECT DROP TABLE

B.DECLARE GLOBAL TEMPORARY TABLE tracker AS (SELECT item_no, item_name FROM items) WITH NO DATA ON COMMIT PRESERVE ROWS

C.CREATE TABLE systmp.tracker AS (SELECT item_num, item_name FROM items) WITH NO DATA ON COMMIT PRESERVE ROWS

D.CREATE TABLE tracker AS (SELECT item_num, item_name FROM items) ON COMMIT PRESERVE ROWS ON DISCONNECT DROP TABLE


参考答案:B

第5题:

Which two statements are true about AH?() (Choose two.)

A. AH provides data integrity.

B. AH is identified by IP protocol 50.

C. AH is identified by IP protocol 51.

D. AH cannot work in conjunction with ESP


参考答案:A, C

第6题:

● You have been assigned as a project leader and must first review the statement of work provided by the customer. Which of the following is most often overlooked?

A Data item deliverables

B Customer-furnished equipment and facilities

C Long-lead procurement items

D Customer-imposed milestones

E Other subcontractor interface requirements


正确答案:A

第7题:

When defining a function activity, what is true about the Result Type?() (Choose two.)

A. Result Type is optional.

B. Result Type is mandatory.

C. Result Type can be changed after it is assigned to the function activity.

D. Result Type should belong to the same item type as the function activity


参考答案:A, C

第8题:

54 You have been assigned as a project leader and must first review the statement of work provided by the customer. Which of the following is most often overlooked?

A. Data item deliverables

B. Customer-furnished equipment and facilities

C. Long-lead procurement items

D. Customer-imposed milestones

E. Other subcontractor interface requirements


正确答案:A

第9题:

请完成下列Java程序:实现2个下拉式菜单,一个包含exit菜单项,另一个包含item1和item2共2个菜单项。要求选择exit菜单项时,退出程序;选择item1菜单项之后,item1项变为不可选而item2可选;选择item2菜单项时,item2变为不可选而item1可选。

注意:请勿改动main()主方法和其他已有语句内容,仅在下划线处填入适当的语句。

程序运行结果如下:

import java.awt.*;

import java.awt.event.*;

public class ex18_2 extends Frame. implements ActionListener {

private choiceHandler ch;

private MenuItem item1;

private MenuItem item2;

public static void main(String[] arg) {

new ex18_2 ( );

}

ex18_2 ( ) {

setTitle("ex18_2");

MenuItem item;

ch = new choiceHandler();

MenuBar mb = new MenuBar();

Menu fm = new Menu("File");

fm.addSeparator();

fm.add(item = new MenuItem("Exit"));

item.addActionListener(this);

fm.add(item);

mb.add(fm);

Menu mm = new Menu("Choice");

mm.add(item1 = new MenuItem("item1"));

item1.addActionListener(ch);

mm.add(item2 = new MenuItem("item2"));

item2.addActionListener(ch);

mb.add(mm);

setMenuBar(mb);

setSize(200,200);

show();

}

public void actionPerformed(ActionEvent ae) {

if(ae.getActionCommand().equals("Exit"))

System.exit(0);

else

System.out.println(ae.getActionCommand());

}

class choiceHandler implements ActionListener {

public void actionPerformed(ActionEvent ae) {

String strCommand = ae.getActionCommand();

if(_________________) {

item2.setEnabled(true);

item1.setEnabled(false);

} else if(______________________) {

item2.setEnabled(false);

item1.setEnabled(true);

}

}

}

}


正确答案:strCommand.equals(”item1”) strCommand.equals(”item2”)
strCommand.equals(”item1”) strCommand.equals(”item2”) 解析:本题主要考查AWT建立菜单的基本方法和事件处理机制,以及控制菜单项的可选与否。解题关键是熟悉菜单的创建和设置方法,掌握菜单的事件处理模型,通过事件处理机制实现对菜单项的设置。本题中,第1个空,判断菜单命令是由选择 item1项发出的,则进行相关的设置;第2个空,判断菜单命令是由选择item2项发出的,则进行相关的操作。

第10题:

在有N个缓冲区的生产者消费者的问题中,下列叙述中哪些是错误的?producer() { int item; while(TRUE) { item = produce_item(); P(empty); P(mutex); insert_item(item); V(mutex) V(full); } } consumer() { int item; while(TRUE) { P(full); P(mutex); item = remove_item(); V(mutex); V(mutex); consume_item(item); } }

A.信号量empty的初值为N

B.信号量full的初值为0

C.信号量mutex的初值为0

D.P(full)和P(mutex)两条语句可以颠倒顺序

E.V(mutex)和V(mutex)两条语句可以颠倒顺序


正确答案:CD

更多相关问题