C2180-276 Exam Details

  • Exam Code
    :C2180-276
  • Exam Name
    :IBM Business Process Manager Express or Standard Edition V8.0 BPM Application Development
  • Certification
    :IBM Certifications
  • Vendor
    :IBM
  • Total Questions
    :53 Q&As
  • Last Updated
    :Dec 04, 2021

IBM C2180-276 Online Questions & Answers

  • Question 21:

    A BPM application developer is asked by a system administrator to fix an issue with a failed process instance in a on-line runtime environment. The system administrator has determined that the problem is with a variable called tw.local.carSelection. The value of tw.local.carSelection is incorrect and needs to be set to "Truck". Assuming the BPM application developer has been granted all security privileges required, which of the following approaches are valid to fix the problem? (Choose two)

    A. Using the Inspector tab via the Process Designer: 1. Select the failed process 2. Use the execution evaluator to change the data 3. Select the 'Resume' button
    B. Using the Inspector tab via the Process Designer: 1. Select the failed process 2. Select the variables tab 3. Edit the data 4. Select the 'Resume' button
    C. Using the Designer tab via the Process Designer: 1. Open the process 2. Change the data 3. Deploy a new snapshot 4. Select "Migrate Existing Instances"
    D. Using a database client connected to the BPM Process DB: 1. Open the LSW_BPD_INSTANCE_DATA table 2. Identify the failed process ID 3. Execute SQL to update the data
    E. Using the Process Inspector tab via the Process Admin Console: 1. Select the failed process 2. Select the failed task 3. Open the data tree 4. Edit the data 5. Select 'Retry Failed Steps'

  • Question 22:

    A design company has a process with 4 activities. The activity that occurs first is Submit Design and it is implemented as a Human Service. The next two activities, Review Design Engineering and Review Design Colors, occur in parallel, are always executed, and are both implemented as a Subprocess. The final activity Approve Design, is implemented as a Human Service and occurs after Review Design Engineering and Review Design Colors have both been completed.

    Select the business process diagram that matches the description of the company's process.

    A. Option A
    B. Option B
    C. Option C
    D. Option D

  • Question 23:

    After deploying a snapshot onto the production server, the BPM application developer wants to have two development versions of the process application, one for the resolution of issues that needs to get fixed immediately in production and one for the development of new features.

    How can the BPM application developer obtain the necessary development versions without creating a new process application?

    A. Create a new snapshot for the process application.
    B. Create a clone of the snapshot installed in production.
    C. Create a new track from the snapshot installed in production.
    D. Import the snapshot installed in production into the Process Center.

  • Question 24:

    A company wants to improve the time it takes to select a vendor for an order. They have indicated that:

    -each vendor works independently from one another.

    - if any vendor provides a price quote of less than $30, the process should move forward and close all open vendor tasks.

    Review the following business process diagram (BPD) and the Output Mapping for the Multi Instance Loop activity Obtain Order Quotes.

    The BPD's local object quotes is of type list of VendorQuote, which contains a property priceQuote of type Decimal. To meet the company's requirements, what does the BPM application developer need to do? Change the Obtain Order Quotes activity to use:Change the Obtain Order Quotes activity to use:

    A. a Simple Loop with a Loop Condition of tw.local.quotes[tw.system.step.counter].priceQuote
    B. an Ordering of Run in Parallel with the Flow Condition Wait for All to finish (All) selected and to specify the activity as being Conditional with script tw.local.quotes[tw.local.quotes.listLength-1].priceQuote < 30
    C. an Ordering of Run in Parallel, the Conditional Wait (Complex) Flow Condition, and tw.local.quotes[tw.system.step.counter].priceQuote < 30 as the Complex Flow Condition, along with enabling Cancel Remaining Instances.
    D. an Ordering of Run in Parallel, the Conditional Wait (Complex) Flow Condition, and tw.local.quotes[tw.local.quotes.listLength-1].priceQuote < 30 as the Complex Flow Condition, along with enabling Cancel Remaining Instances.

  • Question 25:

    A BPM application developer needs to create a business process that will contain several human services. After development begins, the developer learns that some of the task participants could be defined by the internal IBM BPM security provider, while others could be defined in an external LDAP server.

    How should the developer proceed in order to allow this mix of users to participate in the process?

    The BPM application developer should:

    A. use only the external LDAP provider and recreate the internal users in the external LDAP server.
    B. use only the internal IBM BPM security provider and recreate the external LDAP users so that they are defined by the internal IBM BPM security provider.
    C. use either the internal IBM BPM security provider or the external LDAP provider, but not both. All users must exist in either the internal IBM BPM security provider or the external LDAP server.
    D. use the internal IBM BPM security provider in conjunction with the external LDAP provider. Create an IBM BPM security group and add the external LDAP users using the Process Admin Console.

  • Question 26:

    A BPM application developer is creating a General System Service that calls an Integration Service. The General System Service must handle exceptions coming from the integration service.

    How should the BPM application developer implement error handling?

    A. Error End Event
    B. Error Intermediate Event
    C. Throw Statement(s)
    D. Try/Catch Statement(s)

  • Question 27:

    The business owner of a purchasing process has requested a report that displays the total time of three activities.

    What should the BPM application developer use to send the data to the Performance Data Warehouse to create this report?

    A. A Timing Interval
    B. A Service Level Agreement
    C. Exposed Process Variables
    D. Shared Business Objects

  • Question 28:

    A BPM application developer is asked to include the process instance id, in the subject of an activity, so that it appears when the task is shown in a user's portal inbox. To accomplish this type of display, which one of these Javascript API calls does the BPM application developer need to include?

    A. tw.system.step.id
    B. tw.process.instanceId
    C. tw.system.process.instanceId
    D. tw.system.local.process.instanceId

  • Question 29:

    A BPM application developer wants to reuse error handling flows for common errors that can be raised by any activity in a business process diagram and its subprocesses. How should the BPM application developer implement error handling?

    A. Create an event subprocess with the error handling flow and specify the errors to be handled in the properties of the error start event.
    B. Place an error event subprocess with the error handling flow in a toolkit and ensure a dependency to the toolkit is added to the process application.
    C. Place an error intermediate event as part of the service flow for all services that implement the activities. Connect the flow from those events to the same subprocess containing the error handling flow.
    D. Attach intermediate events to all activities, specify the errors to be handled and connect the flow from those events to the same subprocess containing the error handling flow.

  • Question 30:

    A BPM application developer is creating an "Order Management" process that needs to wait for inventory readiness status from a separate inventory application. If the received status is "ready", the process can resume its regular flow. If the received status is "not-available", the process needs to start a "Re-stocking" process flow. The application developer has exposed an inbound web service in IBM BPM to be called by the external inventory application.

    How can the BPM application developer configure the process to allow the response from the incoming web service request to direct the flow of the process? Associate the inbound web service with: A. a service with a JavaScript invocation of an Ad-Hoc event in the "Re-stocking" process flow.

    B. a service with a JavaScript invocation of an Ad-Hoc event in the "Order Management" process.
    C. a service that invokes an Undercover Agent, and a receive message event on the "Re-stocking"process flow that is associated to the same Undercover Agent.
    D. a service that invokes an Undercover Agent, and a receive message event on the "Order Management" process that is associated to the same Undercover Agent.

Tips on How to Prepare for the Exams

Nowadays, the certification exams become more and more important and required by more and more enterprises when applying for a job. But how to prepare for the exam effectively? How to prepare for the exam in a short time with less efforts? How to get a ideal result and how to find the most reliable resources? Here on Vcedump.com, you will find all the answers. Vcedump.com provide not only IBM exam questions, answers and explanations but also complete assistance on your exam preparation and certification application. If you are confused on your C2180-276 exam preparations and IBM certification application, do not hesitate to visit our Vcedump.com to find your solutions here.