certified-mulesoft-developer-i Free Sample Questions

Salesforce Certified MuleSoft Developer I Practice Test
2/73 questions · Unlock full access
Q1

A Mule application's main flow calls a private flow via a Flow Reference. The private flow contains an HTTP Request component that might fail with a connectivity error. The private flow has an `On Error Continue` scope that catches this specific error, logs it, and sets the payload to a default JSON object `{"status": "fallback_data"}`. What happens in the main flow after the private flow's error handler executes? ```mermaid flowchart TD subgraph main_flow A[Start] --> B{Flow Reference to private_flow} B --> C[Logger] C --> D[End] end subgraph private_flow E[Start] --> F{HTTP Request} F -- Error --> G[On Error Continue] G --> H[End of private_flow] end ```

Q2

Refer to the exhibits. The Mule application does NOT define any global error handlers.The Validation component in the private flow throws an error.What response message is returned to a web client request to the main flow's HTTP Listener? A."Parent error"B."Child error"C."Parent completed"D."Validation Error''

Question image