Tag: programming languages

Questions Related to programming languages

Which of the following BPEL functions can be used to read the contents of a BPEL variable?

  1. getVariableData

  2. getContentAsString

  3. getElement

  4. getVariableProperty


Correct Option: A
  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
  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