TIBCO BusinessWorks 5 Certification Exam Sample Questions
Please note: Your successful completion of these sample questions is not a guarantee of passing TIBCO's actual certification exam.
- Which three modes are available for install? (Choose three.)
- GUI mode
- Silent mode
- Replay mode
- Console mode
- Production mode
- Your TIBCO BusinessWorks process needs to retrieve certain messages from a specific queue.
Which is the preferred method to accomplish this? - use any of the JMS queue receiver activities; set the Message Selector property; set the Acknowledge mode property
- bridge the queue to a topic; use the JMS Topic Subscriber activity to set the Message Selector property; set the Acknowledge mode property
- use the Get JMS Queue Message activity to retrieve messages from the queue; check if the message matches your requirements; use the Confirm activity to remove it from the queue
- use any of the JMS queue receiver activities; once message is received, determine if the message matches your requirements; if not, return it back to the server with the JMS Queue Confirm activity
- Your organization has created a standard for organizing TIBCO BusinessWorks projects.
Which is most suited to this task? - TIBCO Adapters
- TIBCO PortalBuilder
- TIBCO Domain Utility
- TIBCO Designer templates
- A process is being built. You need to count the number of times that this process is executed.
What do you create to accomplish this? - Static variable
- Shared variable
- Process variable
- Dynamic variable
- Job Shared variable
- Which TIBCO BusinessWorks activity do you use to manage and restart recoverable process instances programmatically?
- onStartup
- Checkpoint
- Engine Command
- External Command
- The $Employee array consists of two strings, firstName and lastName as shown:
| Firstname | Lastname | | John | Doe | | Fred | Bloggs | | Jim | Smith |
The firstNames must be extracted in the following format: "John,Fred,Jim" Which statement can accomplish this? - concat-sequence($Employee/firstName)
- concat-sequence-format($Employee/*, ',')
- concat-sequence($Employee/firstName, ',')
- concat-sequence-format($Employee/firstName)
- concat-sequence-format($Employee/firstName, ',')
- You have two lists. One list contains the EmployeeIDs and the other list contains the Employee Pay. Each item in the EmployeeID list corresponds to the same position in the Pay List. For example: EmployeeID number 60 has a pay of 3000.
Employee Id | Pay | 20 | 2000 | 40 | 4000 | 60 | 3000 |
How do you combine these lists into a single list, containing the EmployeeID and corresponding Pay? - use an iterate group; "for-each-group" EmployeeID, match the pay by array position
- use "surround with choice" logic for each EmployeeID; for each ID, traverse the Pay List to find the pay
- use "surround with for-each-group" logic for EmployeeID list; match the corresponding Pay using "for-each" logic
- use "for-each" logic for EmployeeID list; map the Pay List; choose the "merge parallel repeating structure" logic
Which two statements are true about the Catch activity?(Choose two.) - It can handle all exceptions within a process.
- It receives control of execution when a Rethrow activity is executed.
- It receives control of execution when an unhandled exception occurs.
- It can handle only one kind of exception. For multiple exception handling, multiple Catch activities must be used.
- The IT department decides to upgrade from TIBCO Runtime Agent 5.2, TIBCO Administrator 5.2 and TIBCO BusinessWorks 5.2 to TIBCO Runtime Agent 5.3, TIBCO Administrator 5.3 and TIBCO BusinessWorks 5.3.
Which two statements are true?(Choose two.) - TIBCO BusinessWorks 5.3 can be installed on TIBCO Runtime Agent 5.2.
- TIBCO Administrator 5.3 requires an environment using TIBCO Runtime Agent 5.3.
- An application edited by TIBCO Designer 5.3 can later be edited by TIBCO Designer 5.2.
- An application designed using TIBCO Designer 5.2 can be successfully deployed using TIBCO Administrator 5.3.
- You are migrating your test environment to production and want to change the TIBCO Rendezvous service port used in this project from 7200 to 7400.
What is the recommended method to accomplish this task before deployment? - modify the server DAT file using a text editor
- modify the TRA file to add the service parameter
- open the project in TIBCO Administrator, change the service variable, and deploy
- use a Global Variable to set the service variable and change it before completing deployment
Using the TIBCO Administrator, which three settings can you configure? (Choose three.) - max log file size
- shared resources
- max log file count
- subprocess Call Order
- -whether or not to run as NT Service
- A developer implements an exception handling routine and uses the Write to Log activity. This activity sets the msgCode field to 1001.
Which action should you take in TIBCO Administrator to let the operator know when this occurs? - create an Event on the process of type Any Failure
- create an Event on the process of type Log Event and set the Match field to 1001
- create an Event on the process of type Suspended Process and set the Description field to 1001
- in the Tracing tab, add a Search Condition of 'Message Code matches 1001' and select the Publish Rule button
Answers:
1. A, B and D
2. A
3. D
4. B
5. C
6. E
7. D
8. A and C
9. B and D
10. D
11. A, C and E
12. B |