Tag: programming languages

Questions Related to programming languages

  1. The BPEL process is synchronous in nature

  2. The BPEL process is asynchronous in nature

  3. The BPEL process has parallel processing

  4. We do not have sufficient information to tell whether the BPEL process is synchronous or asynchronous


Correct Option: A
  1. BPEL code which can generate faults should be placed within a try-catch block

  2. BPEL code which can generate faults should be placed within a catch block

  3. Several catch blocks can be added to the same BPEL scope

  4. The CatchAll block cannot be used if a catch block is used in a scope


Correct Option: B,C

A scope within a BPEL process has a catch block for Remote Fault and a catch block for Binding Fault followed by a catchAll block in that order. Which of the following statements are true?

  1. . If a Remote Fault occurs, it will be caught by the catchAll block

  2. . If a Binding Fault occurs, it will be caught by the catchAll block

  3. . If a Remote Fault occurs, it will be caught first by the Remote Fault catch block and then by the catchAll block

  4. . All faults will always be caught by the catchAll block

  5. None of the above


Correct Option: E