Item Sets
Item Master Owner
Vendors for the Items
Storeroom assignment
第1题:
What are the two objectives in presenting a new structural item?
When presenting a new structural item we should be primarily trying to achieve two things:
a) to enable the students to recognize the new structure well enough to be able to produce it themselves (ie. establish the form);
b) to make absolutely clear the usage of the pattern, so that when the students produce them, prompted by the teacher, they know what they are saying (ie. establish the meaning).
略
第2题:
public class Item { private String desc; public String getDescription() { return desc; } public void setDescription(String d) { desc = d; } public static void modifyDesc(Item item, String desc) { item = new Item(); item.setDescription(desc); } public static void main(String[] args) { Item it = new Item(); it.setDescription(”Gobstopper”); Item it2 = new Item(); it2.setDescription(”Fizzylifting”); modifyDesc(it, “Scrumdiddlyumptious”); System.out.println(it.getDescription()); System.out.println(it2.getDescription()); } } What is the outcome of the code? ()
第3题:
Given that Thing is a class, how many objects and reference variables are created by the following code?() Thing item, stuff; item = new Thing(); Thing entity = new Thing();
第4题:
In order to use the item records at the site level, to what must the item be added? ()
第5题:
What is a rotating item?()
第6题:
You created a custom menu for the Order Entry application. The shipping administrator has requested an additional submenu containing four items to invoke various reports. Which command type must you use to identify the parent menu item as a submenu? ()
第7题:
A rotating item is an individual item that is defined with a common item number. An item is designated as rotating because one wants to be able to create individual asset records by using the information (Classification, Specification,and Item Assembly Structure) contained on the item record.
A rotating item is a set of items that are defined with a specific code. An item is designated as rotating because one does not want to be able to create individual asset records by using the information (Classification, Specification, and Item Assembly Structure) contained on the item record.
A rotating item is a set of kits that are defined with a specific description and GL. An item is designated as rotating because one has the single cost to manage prefers to be able to create individual asset records by using the information (Classification, Specification, and Item Assembly Structure) contained on the assembly record.
A rotating item is an individual item that is defined with a common item number and can be a spare part. An item is designated as rotating because one wants to be able to create multiple asset records by using the information (Classification, Specification, and Item Assembly Structure) contained on the item set records.
第8题:
Compilation fails.
Gobstopper Fizzylifting
Gobstopper Scrumdiddlyumptious
Scrumdiddlyumptious Fizzylifltng
Scrumdiddlyumptious Scrumdiddlyumptious
第9题:
A new Item object is created with the preferred value in the id attribute.
The attribute id in the Item object is modified to the new value.
Compilation fails.
An exception is thrown at runtime.
The attribute id in the Item object remains unchanged.
第10题:
Asset
Location
Storeroom
Rotating Asset
第11题:
The Enforce Primary Key property on the STUDENT block is set to Yes.
The Alias property on the COURSES_OFFERED block is set to Student.
The Copy Value from item property on the foreign key item in the STUDENT blocks is set to the primary key item of the COURSES_OFFERED block.
The Synchronize with item property on the foreign key item in the STUDENT block is set to the primary key item of the COURSES_OFFERED block.
第12题:
DECLARE GLOBAL TEMPORARY TABLE tracker AS (SELECT item_no, item_name FROM items) WITH NO DATA ON COMMIT PRESERVE ROWS ON DISCONNECT DROP TABLE
DECLARE GLOBAL TEMPORARY TABLE tracker AS (SELECT item_no, item_name FROM items) WITH NO DATA ON COMMIT PRESERVE ROWS
CREATE TABLE systmp.tracker AS (SELECT item_num, item_name FROM items) WITH NO DATA ON COMMIT PRESERVE ROWS
CREATE TABLE tracker AS (SELECT item_num, item_name FROM items) ON COMMIT PRESERVE ROWS ON DISCONNECT DROP TABLE
第13题:
Which statement is true about item records and inventory management? ()
第14题:
An application writes to a log file in the /logs filesystem that is full. After the log file is deleted,‘df’ still shows the filesystem as 100% full. What is the likely cause of the problem and what will resolve it?()
第15题:
What should be done to add lines from a Purchase Request (PR) to a Requests for Quotation (RFQ)? ()
第16题:
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?()
第17题:
What must be created before populating the Tools application? ()
第18题:
In the COURSE_ENROLLMENT form module, you define a master-detail relation between the COURSES_OFFERED data block and the STUDENT data block, respectively. To implement block coordination, which statement must be true?()
第19题:
With IBM Maximo Asset Management V6.2 (IMAM), item records are created in the Item Master application, and storeroom records are created in the Storerooms application, but inventory is managed in the Inventory application.
With IMAM, item records are created in the Storerooms application, and storeroom records are created in the Inventory application, but inventory is managed in the Inventory application.
With IMAM, item records are created in the Inventory application, and storeroom records are created in the Item Master application, and inventory is managed in the Item Master application.
With IMAM, item records are created in the Inventory application, and storeroom records are created in the Storerooms application, but inventory is managed in the Item Master application.
第20题:
The deleted file is still open by the application. The system must be rebooted before ‘df’ will show the reduction in the filesystem.
The deleted file is still open by the application. The application must be stopped before ‘df’ will show the reduction in the filesystem.
The filesystem is still marked as full in the /etc/fs.status file. The system must be rebooted before ‘df’ will show the reduction in the filesystem.
The filesystem is still marked as full in the /etc/fs.status file. The application must be stopped before ‘df’ will show the reduction in the filesystem.
第21题:
One object is created
Two objects are created
Three objects are created
One reference variable is created
Two reference variables are created
Three reference variables are created.
第22题:
Menu
Plus
Macro
PL/SQL
第23题:
Hyperlink to the PR tab and add each line.
Go to the Vendors tab in the RFQ application and click Create PO.
Go to the Quotation tab in the RFQ application and select RFQ lines.
Select Action in the RFQ application and click Copy PR line item to RFQ.