Study Guides and Actual Real Exam Questions For Oracle OCP, MCSE, MCSA, CCNA, CompTIA


Advertise

Submit Braindumps

Forum

Tell A Friend

    Contact Us

 Home

 Search

Latest Brain Dumps

 BrainDump List

 Certifications Dumps

 Microsoft

 CompTIA

 Oracle

  Cisco
  CIW
  Novell
  Linux
  Sun
  Certs Notes
  How-Tos & Practices 
  Free Online Demos
  Free Online Quizzes
  Free Study Guides
  Free Online Sims
  Material Submission
  Test Vouchers
  Users Submissions
  Site Links
  Submit Site

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Online Training Demos and Learning Tutorials for Windows XP, 2000, 2003.

 

 

 

 





Braindumps for "1Z0-141" Exam

Oracle great collection from ITCertkeys

 Question 1. 
The DBA has added STATE column to the CUSTOMERS table and has asked you to add a corresponding State item to the Customers block of the Orders form. You want to make it easier for order entry clerks to enter the correct state abbreviation.

Most customers are located in five southeastern states, although on very rare occasions there will be customers from outside that area. You decide to implement a list item with five values for the State item and allow clerks to enter the state abbreviation director for those customers outside the region.

Which style of list item will you create for the State item?

A. A pop list
B. A Tlist
C. A combo box.
D. There is no style of list item that allows users to enter values that are not on the list.

Answer: C

Explanation:
Oracle 9i: Forms Developer Build Internet Application M8-P11 Combo box: Appears as a field with a down arrow next to its right side (Use the button to display all the combo box list elements. The combo box accepts user input.)

Question 2. 
Exhibit:

 

You want to create a new data block. You click the Data Blocks node in the Object Navigator, and then you click Create to invoke the Create Data Block dialog box. As you click through the pages of the wizard, the page shown in the exhibit appears.

After looking at the exhibit, what do you know is true about this form?

A. The block you are creating is based on a view.
B. The block you are creating is based on a stored procedure.
C. The form contains at least one block in addition to the block you are creating.
D. In addition to the block you are creating, the form contains at least two other blocks that are 
    master-detail blocks.
E. The block you are creating is based on a table that has at least one foreign key relationship to 
    another table.

Answer: C

Explanation:
Oracle 9i: Forms Developer Build Internet Application M4-P32
You can build a master-detail form module either by creating a relation between a master and detail block explicitly, or implicitly by using the Data Block Wizard.

1. Create the master block as described earlier in this lesson in the topic Creating a New Data Block.
2. Invoke the Data Block Wizard in the Object Navigator.
3. Follow the same steps as before to create a new data block in the Data Block Wizard until you come to the Master-Detail page.

Question 3. 
You are creating an application on a Windows PC, and you want to test a form. 

What are two ways to start an OC4J instance on the PC? (Choose two)

A. From the Forms Builder menu.
B. From the Windows Start menu.
C. By executing a batch file that is included with Oracle9iDS.
D. From the test form that is included with Oracle9iDS.
E. From the HTML front end (runform.htm) that is included with Oracle9iDS.
F. By running a Forms Builder form, which automatically starts OC4J.

Answer: B, C

Explanation:
Oracle 9i: Forms Developer Build Internet Application M3-P17
To use OC4J on Windows NT, you start it by executing the batch file provided, called startinst.bat. This file is located in the j2ee\Oracle9iDS\ subdirectory of ORACLE_HOME. If you will be testing your applications on your client machine, it is a good idea to set up a shortcut to this batch file, and also to the batch file to stop the OC4J instance, called stopinst.bat.

Question 4. 
While updating an existing customer record using the Customers form, the user invoked the Orders form by clicking the CONTROL.Orders_btn button. The When-Button-Pressed trigger had the following code:

CALL_FORM('orders');

There is a requirement to navigate back to the Customers form after the order details have also been updated.

This will be achieved through a form-level Key-Exit trigger in the Orders form. Which code should be used?

A. IF GET_APPLICATION_PROPERTY(calling_form) IS NOT NULL THEN
    EXIT_FORM(ASK_COMMIT, NO_ROLLBACK;
    ELSE
    EXIT_FORM;
    END IF;
B. VALIDATE(FORM_SCOPE);
    IF :SYSTEM.FORM_STATUS <> 'QUERY' THEN
    GO_FORM('customers');
    ELSE
    EXIT_FORM;
    END IF;
C. ENTER;
    IF :SYSTEM.CURSOR_BLOCK = 'CHANGED' THEN
    COMMIT_FORM;
    ELSE
    EXIT_FORM(NO_VALIDATE, NO_ROLLBACK);
    END IF;
D. IF :SYSTEM.FORM_STATUS = 'CHANGED' THEN
    COMMIT_FORM:
    END IF;
    GO_FORM(customers');

Answer: A

Oracle Forms Developer 6i: Build Internet Applications II M9-P17

Question 5. 
In the Product.fmb module, data block items are displayed on two content canvases. You define a set of icon buttons that users must have access to at all times.
Which canvases type is appropriate to display the buttons?

A. Overlay stacked canvas.
B. Overlay Tab canvas that is associated with a separate window.
C. Content canvas that is associated with the same window as the two content canvases.
D. Horizontal Toolbar canvas that is associated with a separate window.
E. Horizontal Toolbar canvas that is associated with the same window as the two content 
    canvases.

Answer: E

Question 6.
Exhibit:

 

You are developing an Order Entry form. The When-New-Form-Instance trigger executes a query on the only block in the form. Instead of the alert shown in the exhibit, when the query cannot be performed you want to display to the user a message with the actual database error that is received. What can you do to implement this?

A. In the When-New-Form-Instance trigger, insert this code after the EXECUTE_QUERY built in:
    IF NOT FORM _SUCCESS THEN message(DBMS_ERROR_TEXT); END IF;
B. In the When-New-Form-Instance trigger, insert this code after the EXECUTE_QUERY built in:
     IF NOT FORM_SUCCESS THEN message(SQLERRM); END IF;
C. Place this code in a form-level On-Error trigger:
    IF ERROR_CODE = 40505 THEN message(DBMS_ERROR_TEXT);END IF;
D. Place this code in a form-level On-Error trigger:
    IF ERROR_CODE = 40505 THEN message(SQLERRM);
    END IF;
E. Add this exception handler to the When-New-Form-Instance trigger:
     EXCEPTION
    WHEN ERROR_CODE = 40505 THEN
    MESSAGE(DBMS_ERROR_TEXT);
F. Add this exception handler to the When-New-Form-Instance trigger:
   EXCEPTION
   WHEN ERROR_CODE = 40505 THEN
   MESSAGE(SQLERRM);

Answer: C

Question 7.
Exhibit:

 

Which of the items depicted in the Menu Editor (shown in the exhibit) must contain PL/SQL code?

A. Exit and Save only.
B. File, Edit, and Customers only.
C. All items shown in the Menu Editor should contain PL/SQL code.
D. Exit, Save, Customers Report, Open Customers, and Call Customers only.
E. Exit, Save, Cut, Copy, Paste, Customers Form, Customers Report, Open Customers, and Call 
    Customers only.

Answer: D

Question 8.
To centralize some of your processing, you decide to write PL/SQL library modules that contain procedures that can be called from the triggers or menu items.

You want the message "Credit limit exceeded" to be displayed when the values in the order_total and credit_limit fields in the Orders form meet certain criteria. Which code do you use?

A. IF :order_total > 10000
    AND :credit_limit < 10000 THEN
    MESSAGE('Credit limit exceeded');
    END IF;
B. IF :SYSTEM.cursor_item > 10000
    AND :SYSTEM.trigger_item < 10000 THEN
    MESSAGE('Credit limit exceeded');
    END IF;
C. IF NAME_IN('order_total') > 10000
    AND NAME_IN('credit_limit') < 10000 THEN
    MESSAGE('Credit limit exceeded');
    END IF;
D. IF COPY('ORDERS.order_total') > 10000
    AND COPY('ORDERS.credit_limit') < 10000 THEN
    MESSAGE('Credit limit exceeded');
    END IF;
E. IF :ORDERS.order_total > 10000
    AND :ORDERS.credit_limit < 10000 THEN
    MESSAGE('Credit limit exceeded');
    END IF;

Answer: C

Question 9.
How can you programmatically determine which button a user pressed to respond to an alert?

A. Use the GET_ALERT_PROPERTY function.
B. Use the GET_ALERT_BUTTON_PROPERTY function.
C. Check the value returned by the SHOW_ALERT function to see if it is 1, 2, or 3.
D. Check the value returned by the SHOW_ALERT function to see if it is ALERT_BUTTON1,
ALERT_BUTTON2, or ALERT_BUTTON3.
E. Check the value returned by the SHOW_ALERT function to see if it is ALERT_BUTTON1,
ALERT_BUTTON2, or ALERT_BUTTON3.

Answer: D or E – because they are same.

Question 10.
You should enable the user to add additional values to a list item at run time. You must also ensure that the Record Group LOCATIONS, which is used to populate the list item, can be updated with any user-supplied value. What two actions could you take to accomplish this? (Choose two)

A. Add a new value to the list item by calling the POPULATE_LIST built-in.
B. Add a new value to LOCATIONS by calling the POPULATE_GROUP built-in.
C. Add a new value to the list item by calling the ADD_LIST_ELEMENT built-in.
D. Remove duplicate values in LOCATIONS by calling the DELETE_LIST_ELEMENT built-in.
E. Add a new value to LOCATIONS by calling the ADD_GROUP_ROW and  
    SET_GROUP_CHAR_CELL built-ins.
F. Add a new value to LOCATIONS by calling the ADD_GROUP_ROW and 
    SET_GROUP_NUMBER_CELL built-ins.

Answer: C, E

Question 11. 
Your company assigns three possible credit ratings to customers: Poor, Good, and Excellent
(represented numerically by 1, 2, and 3). The DBA has just added a RATING column to the CUSTOMERS table and has asked you to add an item to your form so that data entry clerks can populate the RATING column.

To restrict data entry clerks to one of these three values, you decide to create a radio group for the Rating item. With the Customers block selected in the Layout Editor, you use the radio button to create three radio buttons on the canvas. 

You then set the labels (Poor, Good, and Excellent) and values (1, 2, and 3) for the radio buttons.
You set the name of the radio group to RATING, its Data Type to Number, and its Database column to Rating.

You run the form to test it. When you execute a query, however, no records are returned, although there are many customer records in the database.

What can you do to make the query return the records?

A. Set the Mapping of Other Values property for the radio group to Null.
B. Create a fourth radio button for an undetermined credit rating and leave its value blank.
C. Create a fourth radio button for an undetermined credit rating and explicitly set its value to Null.
D. Choose a different type of input, because radio groups do not allow query of Null values.

Answer: A

Explanation:
Oracle 9i: Forms Developer Build Internet Application M8-P23
Handling Other Values in a Radio Group
If the base table column for a radio group accepts values other than those associated with your radio buttons, you must use one of the following methods to specify how you want to handle the values: 

•Ignore other values (by leaving the radio group's Mapping of Other Values property blank)
•Associate the other values with one of the existing radio buttons (by naming the associated value of the button in the Mapping of Other Values property)
Note: Ignoring other values results in the entire row being ignored during query processing.
NULL Values in a Radio Group
A radio group can treat NULL as a valid value. You should account for the NULL case, if your base table column allows them. Do this in one of the following ways:
•Use the Mapping of Other Values property to implicitly force NULL to a radio button.
•Assign the NULL to its own radio button.

Note: To assign a NULL value, leave the Radio Button Value property blank.

Question 12. 
You are editing the INVENTORY tab canvas. You set the Tab Attachment Edge property to RIGHT. You also change the ordering of INVENTORY tab pages in the Object Navigator. The Direction property has not been customized.

What influence will this have on the display of tab pages at run time?

A. The highest tab page in the Object Navigator will appear at the far left of the tab stack.
B. The highest tab page in the Object Navigator will appear at the top of the tab stack.
C. The highest tab page in the Object Navigator will appear at the far right of the tab stack.
D. The highest tab page in the Object Navigator will appear at the bottom of the tab stack.
E. The lowest tab page in the Object Navigator will appear at the start of the tab stack.

Answer: B

Question 13.
You write a form in which there are two text items (FIELD 1 and FIELD2) and a button (BTN1) arranged in the following sequence:

FIELD1,
BTN2,
FIELD2

Which three conditions will combine to produce a Navigation Trap when the focus is in FIELD1 and the user presses the [Next Item] key? (Choose three)

A. FIELD1 has a Post-Text-Item trigger that fails.
B. FIELD1 has a Pre-Text-Item trigger that fails.
C. FIELD1 has a When-New-Item-Instance trigger that fails.
D. FIELD2 has a Post-Text-Item trigger that fails.
E. FIELD2 has a Pre-Text-Item trigger that fails.
F. FIELD2 has a When-New-Item-Instance trigger that fails.
G. The Keyboard Navigable property of BTN1 is set to No.
H. The Keyboard Navigable property of BTN1 is set to Yes.

Answer: B, E, G

Question 14.
Which two statements define a Static Record Group? (Choose two)

A. The Record Group can be created only at run time.
B. The Record Group is not associated with a query.
C. The Record Group can be created and modified only at design time.
D. The Record Group can be created and modified at design time or at run time.
E. You can modify the structure of this Record Group by adding columns and rows at run time.
F. You can modify the structure of this Record Group by associating it with a query at run time.

Answer: B, C

Question 15.
There is a requirement in the Orders form to direct the focus depending on the value in the Sales Rep Id text item. The design team has not yet decided on the exact details, but you propose the following style of code:
IF :ORDERS.Sales_Rep_Id = ... THEN --value to be decided later
GO_ITEM(...); --item to be decided later
ELSE
GO_ITEM(...); --item to be decided later
END IF;
A colleague suggest that the code could be called from the triggers listed below. In fact, not all these triggers can execute the code.
Which three triggers can call the code? (Choose three)

A. Post-Block on the Orders block.
B. Pre-Block on the Order_Items block.
C. When-New-Block-Instance on the Orders block.
D. Post-Text-Item on the Sales Rep Id text item.
E. When-Validate-Item on the Sales Rep Id text item.
F. When-New-Block-Instance on the Order_Items block.

Answer: C, E, F


Google
 
Web www.certsbraindumps.com


Braindumps: Dumps for 642-426 Exam Brain Dump

Study Guides and Actual Real Exam Questions For Oracle OCP, MCSE, MCSA, CCNA, CompTIA


Advertise

Submit Braindumps

Forum

Tell A Friend

    Contact Us





Braindumps for "642-426" Exam

Troubleshooting Cisco Unified Communications Systems (TUC)

 Question 1.
LSC validation is failing on a new SCCP IP phone that you have just added to the Cisco Unified CallManager 5.0 cluster. No other IP phones are experiencing any problems with LSC validation. 

What can you do to help pinpoint the problem?

A. Check for security alarms
B. Verify that the authentication string is correct in the Cisco Unified CallManager device 
    configuration screen
C. View the SDI trace output
D. Use the Security configuration menu on the IP phone to verify that an LSC has been 
    downloaded to the IP phone

Answer: D

Question 2.
Which three capabilities can't be configured if the default dial peer is matched? (Choose three.)

A. Set preference to 1
B. Invoke a Tcl application
C. Enable dtmf-relay
D. Set codec to G.711
E. Disable DID
F. Disable VAD

Answer: B, C, F

Question 3.
When using trace output to troubleshooting a Cisco Unified CallManager 5.0 problem, how can you collect and view the trace files?

A. Configure the proper trace settings on the Cisco Unified CallManager Serviceability page and 
    then use the embedded RTMT tool to view the trace files
B. Configure the proper trace settings on the Cisco Unified CallManager Serviceability page and 
    download the RTMT plug-in from the CallManager Administration page to view the trace output
C. Download the RTMT plug-in from the Cisco Unified CallManager Serviceability page to view 
    the preconfigured trace files
D. Configure the proper alarms and traces on the Cisco Unified CallManager Administration page 
    and view the output with the RTMT plug-in

Answer: B

Question 4.
You are troubleshooting why a user can't make calls to the PSTN. You are reviewing trace files and you found where the user's IP phone initiates the call but you never see the call go out the gateway. 

What is the next step in troubleshooting this issue?

A. Look in the SDL trace file to see if there is a signal to another Cisco Unified CallManager node 
    with the same time-stamp
B. Look in the MGCP trace file to determine which MGCP gateway the call was sent to
C. Look in the IP Voice Media Streaming APP trace file to see if an MTP was invoked
D. Look in the SDL trace file to see if there is a signal to anther Cisco Unified CallManager node 
    with the same TCP handle

Answer: A

Question 5.
Exhibit:
 

Your work as a network engineer at ITCertKeys.com. Please study the exhibit carefully. 

Voice bearer traffic is mapped to which queue in FastEthernet0/2?

A. Queue 2
B. Queue 3
C. Queue 1
D. Queue 4

Answer: A

Question 6.
Exhibit:
 

Your work as a network engineer at ITCertKeys.com. Please study the exhibit carefully. You have received a trouble ticket stating that calls to international numbers are failing. To place an international call, users dial the access code, "9," followed by "011", the country code and the destination number. After entering the debug isdn 1931 command on the MGCP gateway, you have the user attempt the call again.

Base on the debug output, what is the most likely cause of this problem?

A. The TON in incorrect
B. The circuit is not configured correctly or has a physical layer issue
C. Cisco Unified CallManaager is not stripping the access code before sending the call to the 
    gateway
D. The gateway dial peer needs to prefix "011" to the called number so the PSTN knows this is 
    an internation call
E. The user's CSS does not permit international calls

Answer: A

Question 7.
You have developed a dial plan for Cisco Unified CallManager 5.0 solution. All the route patterns, partitions, calling search spaces and translation rules have been configured. Before starting up the system you wish to test the dial plan for errors. 

Which Cisco Unified CallManager tool will simplify this testing?

A. Route Plan Report
B. Dial Plan Installer
C. Dialed Number Analyzer
D. RTMT Traces and Alarms

Answer: C

Question 8.
You have just obtained a list of the following options: 
all patterns
unassigned DN
Call Park
Conference
Directory Number
Translation Pattern
Call pickup group
Route pattern
Message waiting
Voice mail
Attendant console

What have you selected in order to produce this list?

A. Route Plan > External Route Plan Wizard
B. Control Center > Feature Services
C. Route Plan > Route Plan Report
D. Dialed Number Analyzer

Answer: C

Question 9.
You have configured the Enable Keep Alive check under Trace Filter settings. 

How does this change the trace output?

A. It adds the IP address of the endpoint in hex
B. It maps the unique TCP handle for the endpoint to the MAC address of the endpoint in the 
    trace output
C. It adds the SCCP messages and all fields sent as part of that message
D. It adds TCP socket numbers between the endpoint and Cisco Unified CallManager for the 
    session

Answer: B

Question 10.
When using trace output to troubleshooting a Cisco Unified CallManager 5.0 problem, how can you collect and view the trace files?

A. Configure the proper trace settings on the Cisco Unified CallManager Serviceability page and 
    download the RTMT plug-in from the CallManager Administration page to view the trace output
B. Configure the proper alarms and traces on the Cisco Unified CallManager Administration page 
    and view the output with the RTMT plug-in
C. Download the RTMT plug-in from the Cisco Unified CallManager Serviceability page to view 
    the preconfigured trace files
D. Configure the proper trace settings on the Cisco Unified CallManager Serviceability page and 
    then use the embedded RTMT tool to view the trace files

Answer: A


Google
 
Web www.certsbraindumps.com


Study Guides and Real Exam Questions For Oracle OCP, MCSE, MCSA, CCNA, CompTIA





              Privacy Policy                   Disclaimer                    Feedback                    Term & Conditions

www.helpline4IT.com

ITCertKeys.com

Copyright © 2004 CertsBraindumps.com Inc. All rights reserved.