Es necesario que rellenéis el nombre y correo para que sepáis el resultado de vuestro examen. Nombre Introduce tu correo para que puedas ver el resultado de tu prueba 1. A web client sends one GET request to the test flow's HTTP Listener, which causes the test flow to call the updateTemp flow. After the test flow returns a response, the web client then sends a different GET request to the getTemp flow's HTTP Listener. CódigoThe test flow is not called a second time.What response is returned from the request to the getTemp flow's HTTP Listener?Ejercicio para importar en Anypoint Studio. Pulsa aquí. { "temp": [70,65,100,60,85] } { "temp": "100" } { "temp": "85" } { "temp": 70,"temp": 65,"temp": 100,"temp": 60,"temp": 85} Ninguna 2. A shopping API contains a method to look up store details by department. To get information for a particular store, web clients will submit requests with a query parameter named department and a URI parameter named storeId. What is a valid RAML snippet that supports requests from web clients to get data for a specific storeId and department name? /department: get: uriParameter: StoreId: get: queryParameters: department: uriParameters: storeId: /{storeId}: get: queryParameters: department: get: queryParameters: department: uriParameters: {storeId}: Ninguna 3. A web client submits a request to the HTTP Listener and the HTTP Request throws an error. Código: What payload and status code are returned to the web client? Refer to the exhibits. A web client submits a request to the HTTP Listener and the HTTP Request throws an error. What payload and status code are returned to the web client? Ejercicio para importar en Anypoint Studio. Pulsa aquí. Response body: "Error" Default response status code: 200 Response body: "Success - Begin* Default response status code: 200 Error response body: error, description Default error response status code: 500 Response body: "Success - End" Default response status code: 200 Ninguna 4. A web client submits a request to http://localhost:8081?accountType=personal. The query parameter is captured using a Set Variable transformer to a variable named accountType. What is the correct DataWeave expression to log accountType? Account Type: #[flowVars.accountType] Account Type: #[message.inboundProperties.accountType] Account Type: # [attributes.accountType] Account Type: #[vars.accountType] Ninguna 5. A Mule application contains a Choice router. What is logged when the flow completes?Ejercicio para importar en Anypoint Studio. Pulsa aquí. EU US "REGION" ["US", "EU"] Ninguna 6. A Mule application contains an ActiveMQ JMS dependency. The Mule application was developed in Anypoint Studio and runs successfully in Anypoint Studio.The Mule application must now be exported from Anypoint Studio and shared with another developer.What export options create the smallest JAR file that can be imported into the other developer's Anypoint Studio and run successfully? Ninguna 7. How does APIkit determine the number of flows to generate from a RAML specification? Creates a separate flow for each resource Creates a separate flow for each HTTP method Creates a separate flow for each response status code Creates a separate flow for each resource that contains child resources Ninguna 8. A Utility.dwl file is located in a Mule project at src/main/resources/modules. The Utility.dwl hie defines a function named pascalize that reformats strings to pascal case.What is the correct DataWeave to call the pascalize function in a Transform Message component? %dw 2.0 output application/json import modules.Utility --- pascalize("max mule") %dw 2.0 output application/json import modules::Utility --- pascalize("max mule") %dw 2.0 output application/json import modules::Utility --- Utility::pascalize("max mule") %dw 2.0 output application/json import modules.Utility --- Utility.pascalize("max mule") Ninguna 9. A Mule application has an HTTP Request that is configured with hardcoded values. To change this, the Mule application is configured to use a properties file named config.yaml.What valid expression can the HTTP Request host value be set to so that it is no longer hardcoded? ${training.host} ${training:host} #[training:host] #[training.host] Ninguna 10. The Mule application configures and uses two HTTP Listener global configuration elements. Mule application is run in Anypoint Studio.If the mule application starts correctly, what URI and port numbers can receive web client requests? If the mule applications fails to start , what is the reason for the failure? The mule application fails to start.There is URL path conflict because both HTTP Listeners are configured with same path The mule application start successfully.Web client requests can only be received at URI on port 2222 but not on port 3333 The mule application fails to start because of the port binding conflict as HTTP request also use same port i.e. 3333 The mule application start successfully.Web client requests can be received at URI on port 2222 and on port 3333. Ninguna 11. As a part of requirement , application property defined below needs to be accessed as dataweave expression.What is the correct expression to map it to port value? { port : p('db.port')} { port : {db:port}} { port : p['db.port']} Application property cannot be accessed in Dataweave Ninguna 12. Which of the below is not the mandatory configurations for HTTP Listener? Path Allowed Methods HTTP port in Connector Configuration HTTP host in Connector Configuration Ninguna 13. Mule application contains two HTTP Listeners, each configured for different API endpoints:http://acme.com/apis/ordershttp://acme .com/apis/customersWhat base path value should be set in an HTTP Listener config element so that it can be used to configure both HTTP Listeners? /apis/? /apis/ /apis/orders|customers /apis/* Ninguna 14. How are query parameters dynamically passed to an outbound REST request using an HTTP Request operation? As query parameters in the HTTP Request operation As URI parameters in the HTTP Request operation In the Mule event's payload As flow variables Ninguna 15. The API needs to be updated using the company-wide standard for the Plan data type. The Object data type has already been published in Anypoint Exchange with the global reference.ACME/DataTypes/PlanDataType.raml.What is a valid RAML specification that reuses the Plan data type? Ninguna 16. Does a root element required when creating a XML response using Dataweave? Depends on requirement Not required Always required None of these Ninguna 17. What is not the function of API Gateway? Determine which traffic is authorized to pass through the API to backend services Meter the traffic flowing through Logs all transactions , collecting and tracking analytics data Specify throttling , security and other policies Ninguna 18. A web client submits a request to http://localhost:8081/fliqhts?destination=SFO and the Web Service Consumer throws a WSC:BAD_REQUEST error.What is the next step to fix this error? ************************************************************************************Message :Cannot build default body request for operation [FlndFlight], the operation requires input |parameters.Error type : WSC:BAD_REQUESTElement : 10.02.06-soaperrorFlow/processors/0 @ 10.02.06-soaperror: 10.02.06-soaperror.xml:21 (Consume)Element XML : <wsc:consume docname="Consume” doc:id="49a84a74-848-4065-bI3F-dCOFSIFGAALZ" config-ref="Web_Service_Consumer_Config" operation="findFlight">(set debug level logging or '-Dmule.verbose.exceptions=true’ for everything)************************************************************************************ Set a header In the Consume operation equal to the destination query parameter Set a SOAP payload before the Consume operation that contains the destination query parameter Set a property m the Consume operation equal to the destination query parameter Set a JSON payload before the Consume operation that contains the destination query parameter Ninguna 19. A Mule application configures a property placeholder file named config.yaml to set some property placeholders for an HTTP connector.What is the valid properties placeholder file to set these values? http:host = "localhost"port = "8081" http: basepath: "api" host : "localhost" port : "8081" http.host = localhosthttp.port = 8081 http:basePath: "api",port: "8081",host: " localhost" Ninguna 20. How many private flows does APIKIT generate from the RAML specification? 1 2 3 4 Ninguna 21. A web client sends a POST request with the payload {"oid": "1000", "itemid": "AC200", "qty": "4" } to the Mule application. The File Write operation throws a FILE:CONNECTIVITY error.What response message is returned to the web client?Ejercicio para importar en Anypoint Studio. Pulsa aquí. ‘’FILE:CONNECTIVITY' "ORDER:NOT_CREATED" "OTHER ERROR" "File written" Ninguna 22. What should this endpoint return considering the API is build using standard practices?http://dev.acme.com/api/patients?year=2021 Patient with id 2021 Patients from year 2021 No patients All patients Ninguna 23. The two Mule configuration files belong to the same Mule project. Each HTTP Listener is configured with the same host string and the port number, path, and operation values are shown in the display names.What is the minimum number of global elements that must be defined to support all these HTTP Listeners?Ejercicio para importar en Anypoint Studio. Pulsa aquí. 1 2 3 4 Ninguna 24. An API specification is designed using RAML. What is the next step to create a REST Connector from this API specification? Download the API specification and build the interface using APIkit Publish the API specification to Any point Exchange Implement the API specification using flow designer in Design Center Add the specification to a Mule project's src/main/resources/api folder Ninguna 25. What DataWeave expression transforms the example XML input to the CSV output? payload.sale.*item map ( (value, index) -> { index: index, sale: value.@saleId, itemName: value.desc, itemPrice: (value.price) * (value.quantity), item: value.@itemId } ) payload.sale.*item map ( (value, index) -> { index: index, sale: value.saleId, itemName: value.desc, itemPrice: (value.price) * (value.quantity), item: value.itemId } ) payload.sale.item map ( (value, index) -> { index: index, sale: value.@saleId, itemName: value.desc, itemPrice: (value.price) * (value.quantity), item: value.@itemId } ) payload.sale.item map ( (value, index) -> { index: index, sale: value.saleId, itemName: value.desc, itemPrice: (value.price) * (value.quantity), item: value.itemId } ) Ninguna 26. What MuleSoft product enables publishing, sharing, and searching of APIs? Runtime Manager API Notebook API Designer Anypoint Exchange Ninguna 27. What should this endpoint return?http://dev.acme.com/api/patients?name=John&surname=Bell Patient with name as John Patient with surname as bell Patients with either name as John or surname as Bell Patients with name as John and surname as Bell Ninguna 28. What HTTP method in a RESTful web service is typically used to completely replace an existing resource? GET PATCH PUT POST Ninguna 29. 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?Ejercicio para importar en Anypoint Studio. Pulsa aquí. "Child error" "Parent error" "Validation Error" "Parent completed" Ninguna 30. The Validation component in the Try scope throws an error.What response message is returned to a client request to the main flow's HTTP Listener?The Validation component in the Try scope throws an error. What response message is returned to a client request to the main flow's HTTP Listener?Ejercicio para importar en Anypoint Studio. Pulsa aquí. Success - Main Flow Error - Main Flow Error - Try Scope Validation Error Ninguna 31. An On Table Row Database listener retrieves data from a table that contains record_id, an increasing numerical column.How should the listener be configured so it retrieves new rows at most one time? Set the target to store the last retrieved record_id value Set the ObjectStore to store the last retrieved record_id value Set the target to the record_id column Set the watermark column to the record id column Ninguna 32. The orders.csv file is read, then processed to look up the orders in a database. The Mule application is debugged in Any point Studio and stops at the breakpoint.Orders.csv orderId,account100, partnerA101, acme.com102, mybank.com103, onlineSales What is the payload shown in the debugger at this breakpoint? "none" The entire CSV file The database response 100 Ninguna 33. From which application , Organization Administrators can approve/revoke/delete SLA tier access requests? API Exchange API Portal API Gateway API Manager Ninguna 34. This RAML specification includes a resource and method to retrieve accounts by account_type and industry.What is the correct URI to get all retail finance accounts? /accounts/retail/finance /accounts?account_type=retail&industry=finance /accounts/account_type=retail/industry=finance /accounts?account_type:retail&industry:finance Ninguna 35. A Utlility.dwl is located in a Mule project at src/main/resources/modules. The Utility.dwl file defines a function named encryptString that encrypts a String. What is the correct DataWeave to call the encryptString function in a Transform Message component? %dw 2.0 output application/json import modules::Utility --- Utility::encryptString( "John Smith" ) %dw 2.0 output application/json import modules::Utility --- encryptString( "John Smith" ) %dw 2.0 output application/json import modules.Utility --- encryptString( "John Smith" ) %dw 2.0 output application/json import modules.Utility --- Utility.encryptString( "John Smith" ) Ninguna 36. What is the difference between a subflow and a sync flow? No difference Subflow has no error handling of its own and sync flow does Sync flow has no error handling of its own and subflow does Subflow is synchronous and sync flow is asynchronous Ninguna 37. A RAML specification is defined to manage customers with a unique identifier for each customer record.What URI does MuleSoft recommend to uniquely access the customer identified with the unique ID 1234? /customers?custid=true&custid=1234 /customers/1234 /customers/custid=1234 /customers?operation=get&custid=1234 Ninguna 38. Refer to the exhibits. In the choice router, the When expression for the domestic shipping route is set to "#[payload= "FR"]".What is the output of logger after the execution of choice router is completed?Ejercicio para importar en Anypoint Studio. Pulsa aquí. "Domestic" "International" "US" A dataweave syntax error Ninguna 39. What is minimal requirement in a flow for a Mule application to compile? Event Source Event Processors Error handlers Source and processors both Ninguna 40. What is not true about application properties? Application properties can be encrypted Application properties can be overridden with system properties Application properties can be defined in .yaml file only Application properties provide easier way to manage configurable values Ninguna 41. A web client sends a request to http;//localhost:8081?dept=sales.What is the correct DataWeave expression to access the value of dept? attributes.queryParams.dept attributes.dept message.queryParams.dept vars.dept Ninguna 42. What Database expression transforms the input to the output? {{ payload map ( (value, index) -> order: { item: { itemName: value.item, total: value.price * value.quantity } ) }} order: payload map ( (value, index) -> item: { itemName: value.item total: value.price * value.quantity } ) payload map ( (value, index) -> order: { item: { itemName: value.item, total: value.price * value.quantity } ) order: {{ payload map ( (value, index) -> item: { itemName: value.item total: value.price * value.quantity } ) }} Ninguna 43. An HTTP Request operation sends an HTTP request with a non-empty JSON object payload to an external HTTP endpoint. The response from the external HTTP endpoint returns an XML body. The result is stored in a target named the Result.What is the payload at the event processor after the HTTP Request? The XML response body null The original JSON request body A non-empty Java object Ninguna 44. A Mule flow has three Set Variable transformers.What global data structure can be used to access the variables? Mule Event Attibutes Mule Event Message Mule application properties Mule Event Ninguna 45. Input Payload [ {"size": "large", "amount": 1000, "price: 400.00"}, {"size": "medium", "amount": 400, "price: 600.00"}, {"size": "small", "amount": 1, "price: 800.00"},] The Batch Job scope contains two Batch Step scopes with different accept expressions.The input payload is passed to the Batch Job scope.After the entire payload is processed by the Batch Job scope, what messages have been logged by the Logger components?Ejercicio para importar en Anypoint Studio. Pulsa aquí. { "amount": 500 }{ "amount": 101 }{ "step2amount": 1000 } { "amount": 500 }{ "amount": 601 }{ "step2amount": 1000 }{ "step2amount": 500 }{ "step2amount": 601 } { "amount": 500 }{ "amount": 101 }{ "step2amount": 1000 }{ "step2amount": 500 } { "amount": 500 }{ "amount": 101 }{ "step2amount": 1000 }{ "step2amount": 400 } Ninguna 46. A Mule project contains a MySQL Database dependency. The project is exported from Anypoint Studio so it can be deployed to CloudHub.What export options create the smallest deployable archive that will successfully deploy to CloudHub? Ninguna 47. A company has an API to manage purchase orders, with each record identified by a unique purchase order ID.The API was built with RAML according to MuleSoft best practices.What URI should a web client use to request order P05555? /orders/{P05555} /orders/order=P05555 /orders?order=P05555 /orders/P05555 Ninguna 48. In the execution of scatter gather, the "sleep 2 sec" Flow Reference takes about 2 sec to complete, and the "sleep 8 sec" Flow Reference takes about 8 sec to complete.About how many sec does it take from the Scatter-Gather is called until the "Set Payload" transformer is called? 8 0 2 10 Ninguna 49. All three of the conditions for the Choice router are true. What messages are written in the application log?Ejercicio para importar en Anypoint Studio. Pulsa aquí. Route1 Route2 Route1, Route2 Route1, Route2, Default Ninguna 50. What is output of Dataweave flatten function? Object Map Array LinkedHashMap Ninguna 51. Refer to the exhibits. Client sends the request to ClientRequestFlow which calls ShippingFlow using HTTP Request activity. During E2E testing it is found that that HTTP:METHOD_NOT_ALLOWED error is thrown whenever client sends request to this flow.What attribute you would change in ClientRequestFlow to make this implementation work successfully? ************************************************************************************Message : HTTP PUT on resource 'http://localhost:8681/shipping’ failed: method not allowed (405).Element : ClientRequestFlow/processors/1 @ mule_app:flow1.xml:68 (/shipping)Element DSL : Error type : HTTP:METHOD_NOT_ALLOWEDFlowStack : at ClientRequestFLow(ClientRequestFlow/processors/1 @ mule_app:flow1.xml:68 (/shipping))(set debug level logging or '-Dmule.verbose.exceptions=true’ for everything)************************************************************************************<a href="https://www.ingenierobinario.com/wp-content/uploads/2024/05/55.jar">Ejercicio para importar en Anypoint Studio. Pulsa aquí.</a> Change the method attribute value to "*’’ Change the path attribute value to "/api/ship" Change the allowed method attributes value to "POST" Change the protocol attribute value to "HTTPS" Ninguna 52. Which one of them is NOT a flow in Mule? sync flow subflow async subflow async flow Ninguna 53. The Set Variable transformer is set with value #[ [ first "Max" last "Mule"} ].What is a valid DataWeave expression to set as the message attribute of the Logger to access the value "Max" from the Mule event?Ejercicio para importar en Anypoint Studio. Pulsa aquí. vars."customer first" customer.first vars.customer.first Ninguna 54. According to MuleSoft. What is the first step to create a Modern API? Gather a list of requirements to secure the API Create an API specification and get feedback from stakeholders Performance tune and optimize the backend systems and network Create a prototype of the API implementation Ninguna 55. What does C4E stands for in MuleSoft recommended IT operating model? Centre for Empowerment Centre for Engagement Centre for Enablement Centre for Excellence Ninguna 56. An organization is beginning to follow Mulesoft's recommended API led connectivity approach to use modern API to support the development and lifecycle of the integration solutions and to close the IT delivery gap.What distinguishes between how modern API's are organized in a MuleSoft recommended API-led connectivity approach as compared to other common enterprise integration solutions? The API interfaces are specified as macroservices with one API representing all the business logic of an existing and proven end to end solution The API interfaces are specified at a granularity intended for developers to consume specific aspect of integration processes The API implementation are built with standards using common lifecycle and centralized configuration management tools The APIO implementations are monitored with common tools, centralized monitoring and security systems Ninguna 57. The default scope in choice router recursively calls the color flow. A web client sends a PUT request to the HTTP listener with payload Blue.What response is returned to the web client? "Blk" "Green" A timeout error ["Blue", "Red", "Blk"] Ninguna 58. What is the correct Syntax to add a customer ID as a URI parameter in the HTTP listener's path attribute? #[customerID] $[customerID] {customerID} (customerID) Ninguna 59. What is the purpose of the api:router element in APIkit? Creates native connectors using a 3rd party Java library Serves as an API implementation Validates requests against RAML API specifications and routes them to API implementations Validates responses returned from API requests and routes them back to the caller Ninguna 60. A company has an API to manage departments, with each department identified by a unique deptld. The API was built with RAML according to MuleSoft best practices.What is valid RAML to specify a method to update the details for a specific department? /departments: /deptId patch: /departments: patch /deptId: /departments: patch queryParameters: deptId /departments: /{deptId} patch: Ninguna 61. By default, what happens to a file after it is read using an FTP connector Read operation? The file is deleted from the folder The file is moved to a different folder The file stays in the same folder unchanged The file is renamed in the same folder Ninguna 62. What payload is returned from a request to http//localhost.8081/?Ejercicio para importar en Anypoint Studio. Pulsa aquí. 1 2 3 4 Ninguna 63. How should be the where clause written for the configured input parameters in such a way that it achieves below SQL query? WHERE city := ${city} AND state := ${state} WHERE city = attributes.city AND state = attributes.state WHERE city = :city AND state = :state WHERE city := city AND state := state Ninguna 64. Refer to the exhibit. What is the output of logger component?Ejercicio para importar en Anypoint Studio. Pulsa aquí. String Object Array Map Ninguna 65. Which of the below is used by Mule application to manage dependencies which make sharing the projects lightweight and easier? Configuration file Global Element POM.xml Cloudhub Ninguna 66. A Batch Job scope has five batch steps. An event processor throws an error in the second batch step because the input data is incomplete. What is the default behavior of the batch job after the error is thrown? All processing of the batch job stops. Event processing continues to the next batch step. Error is ignored Batch is retried Ninguna 67. What is the main purpose of flow designer in Design Center? To design and develop fully functional Mule applications in a hosted development environment To design API RAML files in a graphical way To design and mock Mule application templates that must be implemented using Anypoint Studio To define API lifecycle management in a graphical way Ninguna 68. A Mule project contains a DataWeave module like WebStore.dwl that defines a function named loginUser. The module file is located in the project's src/main/resources/libs/etl folder.What is correct DataWeave code to import all of the WebStore.dwl file's functions and then call the loginUser function for the login "Todd.Pal@mulesoft.com"? import libs.etl --- WebStore.loginUser("Todd.Pal@mulesoft.com") import * from libs::etl --- WebStore::loginUser("Todd.Pal@mulesoft.com") import libs.etl.WebStore--- loginUser("Todd.Pal@mulesoft.com") import * from libs::etl::WebStore--- loginUser("Todd.Pal@mulesoft.com") Ninguna 69. What statement is a part of MuleSoft's description of an application network? Creates and manages high availability and fault tolerant services and infrastructure Creates reusable APIs and assets designed to be consumed by other business units Creates and manages a collection of JMS messaging services and infrastructure Leverages Central IT to deliver complete point-to-point solutions with master data management Ninguna 70. Which file is used to define the interface contract to invoke a web service implemented as a SOAP service? RAML WSDL JSON OAS Ninguna 71. What is the correct syntax to add a customer ID as a URI parameter in an HTTP Listener's path attribute? (customerlD) {customerlD} #[customerlD] ${ customerID} Ninguna 72. What is the object type returned by the File List operation? Object of String file names Array of String file names Object of Mule event objects Array of Mule event objects Ninguna 73. An API implementation has been deployed to CloudHub and now needs to be governed. IT will not allocate additional vCore for a new Mule application to act as an API proxy.What is the next step to preseive the current vCore usage, but still allow the Mule application to be managed by API Manager? Register the same API implementation in Runtime Manager to connect to API Manager Modify the API implementation to use auto-discovery to register with API Manager Upload the Mule application's JAR file to the API instance in API Manager Deploy the same API implementation behind a VPC and configure the VPC to connect to API Manager Ninguna 74. Why would a Mule application use the ${http.port} property placeholder for its HTTP Listener port when it is deployed to CloudHub? Allows CloudHub to automatically change the HTTP port to allow external clients to connect to the HTTP Listener Allows CloudHub to automatically register the application with API Manager Allows MuleSoft Support to troubleshoot the application by connecting directly to the HTTP Listener Allows clients to VPN directly to the application at the Mule application's configured HTTP port Ninguna 75. What is the response when a client submits a request to http://localhost:8081?Ejercicio para importar en Anypoint Studio. Pulsa aquí. After null Before Validation Error Ninguna 76. What happens to the attributes of a Mule event in a flow after an outbound HTTP Request is made? Attributes are replaced with new attributes from the HTTP Request response (which might be null) New attributes may be added from the HTTP response headers, but no headers are ever removed Attributes do not change Previous attributes are passed unchanged Ninguna 77. What payload and quantity are togged at the end of the main flow?Ejercicio para importar en Anypoint Studio. Pulsa aquí. [[order1, order2, order3, order4], 14] [[1,2,3,4], 10] [[1,2,3,4], 14] [orderlorder2order3order4, 14] Ninguna 78. The my-app xml file contains an Error Handier scope named "global-error-handler".The Error Handler scope needs to be set to be the default error handler for every flow in the Mule application.Where and how should the value "global-error-handler" be added in the Mule project so that the Error Handler scope is the default error handler of the Mule application?Ejercicio para importar en Anypoint Studio. Pulsa aquí. In the mule-artifact json file, as the value of a key-value pair In the Validation folder as the value of a global element in the error-handling yaml file In the pom.xml file, as the value of a global element In the my-app.xml file, as an attribute of a configuration element Ninguna 79. Which of the below is not a valid category for connector type? Gold Select Premium Community Ninguna 80. In the execution of the Scatter-Gather , the flow route completes after 10 seconds and the flow2 route completes in 40 seconds. How many seconds does it take for the Scatter-Gather to complete? 10 50 40 20 Ninguna 81. A function named newProdCode needs to be defined that accepts two input parameters, an integer value for itemID and a string value for productCategory, and returns a new product code.What is the correct DataWeave code to define the newProdCode function? fun newProdCode(itemID: Number, productCategory: String) -> "PC-" ++ productCategory ++ (itemID as String) fun newProdCode(itemID: Number, productCategory: String) = "PC-" ++ productCategory ++ (itemID as String) fun newProdCode{itemID: Number, productCategory: String) = "PC-" ++ productCategory ++ (itemID as String) var newProdCode = (itemID: Number, productCategory: String) -> "PC-" ++ productCategory ++ (itemID as String) Ninguna 82. A web client sends a POST request to the HTTP Listener with the payload "Hello-". What response is returned to the web client?Ejercicio para importar en Anypoint Studio. Pulsa aquí. Hello-HTTP-JMS2-Three HTTP-JMS2-Three Helb-JMS1-HTTP-JMS2 -Three Hello-HTTP-Three Ninguna 83. What is a valid expression for the Choice router’s when expression to route events to the documenticShipping flow? #[ payload = 'FR' ] #[ payload == 'FR' ] #[ if(payload = 'FR') ] #[ if(payload == "FR") ] Ninguna 84. What of the below is not a feature of API Notebooks? API documentation Creates a client for an API Creates a mock service for an API Perform authenticated live calls on a real server Ninguna 85. A JSON payload is set in the Set Payload transformer.What is logged by the Logger?Ejercicio para importar en Anypoint Studio. Pulsa aquí. "String" "Object" "Array" "JSON" Ninguna 86. A RAML example fragment named StudentExample.raml is placed in the examples folder in an API specification project.What is the correct syntax to reference the fragment? examples: !include StudentExample.raml examples: #import StudentExample.raml examples: !include examples/StudentExample.raml examples: #import examples/StudentExample.raml Ninguna 87. A web client submits a request to http://localhost:8081/books/0471767840. The value "0471767840" is captured by a Set Variable transformer to a variable named booklSBN.What is the DataWeave expression to access booklSBN later in the flow? booklSBN attributes.booklSBN flowVars.booklSBN vars. booklSBN Ninguna 88. In the execution of the Scatter-Gather , the flow route completes after 10 seconds and the flow2 route completes in 40 seconds. How many seconds does it take for the Scatter-Gather to complete? 0 10 20 30 Ninguna 89. Which of the following is invalid type of event processor which can be used as a router ? Choice Round Robin Pick First First Successful Ninguna 90. A flow contains an HTTP Listener as the event source. What is the DataWeave expression to log the Content-Type header using a Logger component? #["Content-Type: " ++ attributes.headers.'content-type'] #["Content-Type: " + headers.'content-type'] #["Content-Type: " + attributes.headers.'content-type'] #["Content-Type: " ++ headers.'content-type'] Ninguna 91. Payload { "transaction_id": "SS-4848-44KK-4SYQ", "account_id": "KA-382-SKD44", "name": "Max Mule", "position": "sell"} What is written to the records.csv file when the flow executes?Ejercicio para importar en Anypoint Studio. Pulsa aquí. The JSON payload An error message Nothing The payload convert to CSV Ninguna 92. What is the correct syntax to define and call a function in Database? fun addKV(object: Object, key: String, value: Any) = object ++ { (key):value }---addKV( {hello: "world"}, "hola", "mundo" ) %function addKV(object: Object, key: String, value: Any) = object ++ { (key):value }---addKV( {hello: "world"}, "hola", "mundo" ) %function addKV(object: Object, key: String, value: Any) = object ++ { (key):value }---{ hello: "world" } addKV ("hola", "mundo") fun addKV(object: Object, key: String, value: any) = object ++ { (key):value }---{ hello: "world" } addKV ("hola", "mundo") Ninguna 93. According to Mulesoft, how are Modern APIs treated as? Products (Assets) SOAP APIs REST APIs Code Ninguna 94. A Database On Table Row listener retrieves data from a CUSTOMER table that contains a primary key user_id column and an increasing kxjin_date_time column. Neither column allows duplicate values. How should the listener be configured so it retrieves each row at most one time? Set the watermark column to the bgin_date_time column Set the target value to the last retrieved login_date_time value Set the target value to the last retrieved user_id value Set the watermark column to the user_id column Ninguna 95. A shopping API contains a method to look up store details by department. To get the information for a particular store, web clients will submit requests with a query parameter named department and uri parameter named storeId.What is valid RAML snippet that supports requests from a web client to get a data for a specific storeId and department name? /department get: uriParameter: storeId get uriParameter: {storeId}: queryParameter: department get queryParameter: department: uriParameter: {storeId} /{storeId} get: queryParameter: department: Ninguna 96. What DataWeave expression transforms the conductorIds array to the XML output? trains: conductorsIds map ((engId, index) -> train: { engineerId: engId }) {trains: conductorsIds map ((engId, index) -> train: { engineerId: engId } )} trains: {( conductorsIds map ((engId, index) -> train: { engineerId: engId } ))} {( trains: conductorsIds map ((engId, index) -> train: { engineerId: engId } ))} Ninguna 97. The Batch Job scope processes the array of strings.After the Batch Job scope completes processing the input payload what information is logged by the Logger component? Ejercicio para importar en Anypoint Studio. Pulsa aquí. Total Records Processed: 1Successful records: 1Failed Records: 0payload: ["A", "B", "C"] Total Records Processed: 3Successful records: 3Failed Records: 0payload: ["A", "B", "C"] Total Records Processed: 3Successful records: 3Failed Records: 0 ["A", "B", "C"] Ninguna 98. What payload and variable are logged at the end of the main flow? Ejercicio para importar en Anypoint Studio. Pulsa aquí. [[5, 10, 15, 20], 1] [[5, 10, 15, 20], 5] [[Req5, Req10, Req15, Req20], 5] [Req5Req10,Req15Req20, 5] Ninguna 99. ERROR 2021-07-04 09:30:38,737 [[MuleRuntine].uber.11: [mule_app].uber@org.mule.runtine.module.extension.internal.runtime.source.ExtensionMessageSource.lamorg.mule.runtime.api.connection.ConnectionException: Could not obtain connection from data sourceCaused by: org.mule.extension.db.api.exception.connection.ConnectionCreationException: Could not obtain connection from data sourceCaused by: org.mule.runtime.extension.api.exception.ModuleException: java.sql.SQLException: Error trying to load driver: com.mysql.jdbc.Driver : Cannot lo Class ‘com.mysql.jdbc.Driver' has no package mapping for region ‘domain/default/app/mule_app’., Cannot load class 'com.mysql.jdbc.Driver': [ Class ‘com.mysql.jdbc.Driver' has no package mapping for region /domain/default’., Class ‘com.mysql.jdbc.Driver' not found in classloader for artifact ‘container’.]]Caused by: java.sql.SQLException: Error trying to load driver: com.mysql.jdbc.Driver : Cannot load class ‘com.mysql.jdbc.Driver': [ Class ‘com.mysql.jdbc.Driver’ has no package mapping for region 'domain/default/app/mule_app’., Cannot load class ‘com.mysql.jdbc.Driver': ( ... As a mulesoft developer, what you would change in Database connector configuration to resolve this error? Configure the correct host URL Configure the correct database name Configure the correct table name Configure the correct JDBC driver Ninguna 100. The Set Payload transformer In the addltem subflow uses DataWeave to create an order object.What is the correct DataWeave code for the Set Payload transformer in the createOrder flow to use the addltem subflow to add a router cable with the price of 100 to the order? addltem( { payload: { price: "100", item: "router", itemType: "cable" } ) lookup ( "addltem", { payload: { price: "100", item: "router", itemType: "cable" } } ) addltem ({ price: "100", item: "router", itemType: "cable" }) lookup( "addltem", { price: "100", item: "router", itemType: "cable" } ) Ninguna 101. Each route in the Scatter-Gather sets the payload to the number shown in the label.What response is returned to a web client request to the HTTP Listener? [ { "attributes": ... "payload": "100" }, { "attributes": ... "payload": "200" }] { "0": "100", "1": "200"} ["100", "200"] { "0": { "attributes": ... "payload": "100" }, "1": { "attributes": ... "payload": "200" }} Ninguna 102. In an application network. If the implementation but not the interface of a product API changes, what needs to be done to the other APIs that consume the product API? The applications associated with the other APIs must be restarted The applications associated with the other APIs must be recoded The other APIs must be updated to consume the updated product API Nothing needs to be changed in the other APIs or their associated applications Ninguna 103. What message should be added to Logger component so that logger prints "The city is Pune" (Double quote should not be part of logged message)? #["The city is" ++ payload.city] The city is + #[payload.city] The city is #[payload.city] #[The city is ${payload.city} Ninguna 104. Where is metadata stored in a Mule project Config.yaml POM.xml application-types.xml Global Element Ninguna 105. In the Database On Table Row operation, what does the Watermark column enable the On Table Row operation to do? To avoid duplicate processing of records in a database To delete the most recent records retrieved from a database to enable database caching To enable duplicate processing of records in a database To save the most recent records retrieved from a database to enable database caching Ninguna 106. An API has been created in Design Center. What is the next step to make the API discoverable? Publish the API to Anypoint Exchange Publish the API from inside flow designer Deploy the API to a Maven repository Enable autodiscovery in API Manager Ninguna 107. There are three routes configured for Scatter-Gather and incoming event has a payload is an Array of three objects. How routing will take place in this scenario? Incoming array objects would be split into three and each part would be sent to one route each in sequential manner Incoming array objects would be split into three and each part would be sent to one route each in parallel Entire event would be sent to each route sequentially Entire event would be sent to each route in parallel Ninguna 108. The Set payload transformer sets the payload to an object. The logger component's message attribute is configured with the string "Result #["INFO"++ payload]" What is the output of logger when this flow executes? Ejercicio para importar en Anypoint Studio. Pulsa aquí. Result INFOpayload Result INFO{"student":{"name":"Anay","age":6}} You called the function '++' with these arguments: 1) String ("INFO") 2) Object ({student: {name: "Anay" as String {class: "java.lang.String"},age: 6 as Numbe...) Error : You evaluated inline expression # without ++ Ninguna 109. How should the WHERE clause be changed to set the city and state values from the configured input parameters? WHERE city = :city AND state = :state WHERE city - attributes.city AND state - attributes.state WHERE city := ${city} AND state := ${state} WHERE city = #[city] AND state = #[state] Ninguna 110. A company has defined two RAML fragments, Book Data Type and Book Example to be used in APIs. What would be valid RAML to use these fragments? #%RAML 1.0 title: Books types: Book: !include ABC/Examples/bookDataType.raml /books: post: body: application/json: type: Book examples: input: !include ABC/Examples/bookExample.raml responses: 201: body: application/json: example: message: Book added #%RAML 1.0 title: Books types: Book: !include bookDataType.raml /books: post: body: application/json: type: Book examples: input: !include bookExample.raml responses: 201: body: application/json: example: message: Book added #%RAML 1.0 title: Books types: Book: !include bookDataType.raml /books: post: body: application/json: type: Book examples: input: !include bookExample.raml responses: 201: body: application/json: example: message: Book added Ninguna 111. The Batch Job scope contains two Batch Steps scopes with different accept expression.The input payload is passed to the Batch Job scopeAfter the entire payload is processed by the batch job scope , what messages have been logged by the Logger component? Ejercicio para importar en Anypoint Studio. Pulsa aquí. {amount=140}{amount=102}{step2amount=100} {amount=140}{amount=102}{step2amount=100}{step2amount=40} {amount=140}{amount=102}{step2amount=100}{step2amount=140} {amount=140}{amount=102}{step2amount=100}{step2amount=140}{step2amount=102} Ninguna 112. What is the output of Dataweave Map operator? Map Object String Array Ninguna 113. What expression correctly specifies input parameters to pass the city and state values to the SQL query? #[ { city: "San Francisco", state: "CA" }] #[ [ city: "San Francisco", state: "CA" ]] #[ inputParams: { city: "San Francisco", state: "CA" }] #[ inputParams: [ city: "San Francisco", state: "CA" ]] Ninguna 114. What is the correct way to create a user? Ninguna 115. Refer to the exhibit. The input array of strings is passed to the batch job, which does NOT do any filtering or aggregating. What payload is logged by the Logger component? Ejercicio para importar en Anypoint Studio. Pulsa aquí. Summary report of processed records [ "Apple", "Banana" ] [ "Appel2", "Banana2" ] [ "Appel", "Banana", 2 ] Ninguna 116. How are multiple conditions used in a Choice router to route events? To route the same event to the matched route of EVERY true condition To find the FIRST true condition, then distribute the event to the ONE matched route. None of these To find the FIRST true condition, then route the same event to the matched route and ALL FOLLOWING routes Ninguna 117. What is the default port used by Mule application debugger configuration in Anypoint Studio? 8082 8080 7777 6666 Ninguna 118. An API instance of type API endpoint with API proxy is created in API manager using an API specification from Anypoint Exchange. The API instance is also configured with an API proxy that is deployed and running in CloudHub.An SLA- based policy is enabled in API manager for this API instance. Where can an external API consumer obtain a valid client ID and client secret to successfully send requests to the API proxy? In the organization's public API portal in Anypoint Exchange, from an approved client application for the API proxy In Anypoint Studio, from components generated by APIkit for the API specification In Anypoint Studio, from components generated by Rest Connect for API specification In Runtime Manager, from the properties tab of the deployed approved API proxy Ninguna 119. The main flow is configured with their error handlers. A web client submit a request to the HTTP Listener and the HTTP Request throws an HTTP:NOT_FOUND error. What response message is returned?Ejercicio para importar en Anypoint Studio. Pulsa aquí. APP: API RESOURCE NOT FOUND HTTP: NOT FOUND other error success - main flow Ninguna 120. The Mule application Is debugged in Any point Studio and stops at the breakpoint.What is the value of the payload displayed In the debugger at this breakpoint? 0 "Processing" "Start" "Complete" Ninguna 121. The Database Select operation returns five rows from a database. What is logged by the Logger component? "Array" "Object" "LinkedHashMap" "CaselnsensitrveHashMap" Ninguna 122. Which of the module is imported automatically in Dataweave scripts? dw::core dw::System dw::Runtime dw::Crypto Ninguna 123. How would you debug Mule applications? By Deploying apps on production Checking RAML specifications Using debugger component Use third party debugger application Ninguna 124. Where are values of query parameters stored in the Mule event by the HTTP Listener? Inbound Properties Variables Attributes Payload Ninguna 125. A Scatter-Gather processes three separate HTTP requests. Each request returns a Mule event with a JSON payload. What is the final output of the Scatter-Gather? An Array of the three Mule event Objects An Object containing all three Mule event Objects An Array of the three JSON payload Objects An Object containing all three JSON payload Objects Ninguna 126. What is the correct syntax for a Logger component to output a message with the contents of a 3SON Object payload? The payload is: $(payload) #["The payload is: " ++ payload] The payload is: #[payload] #["The payload is: " + payload] Ninguna 127. As a part of project requirement , you want to build an API for a legacy client. Legacy client can only consume SOAP webservices. Which type the interface documentation can be prepared to meet the requirement? RAML file to define SOAP services WSDL file JSON file plain text file documenting API's Ninguna 128. What payload is returned by a Database SELECT operation that does not match any rows in the database? false null Exception Empty Array Ninguna 129. To avoid hard-coding values, a flow uses some property placeholders and the corresponding values are stored in a configuration file.Where does the configuration file's location need to be specified in the Mule application? The pom.xml file A global element The mule-artifact.json file a flow attribute Ninguna 130. What is the trait name you would use for specifying client credentials in RAML? headers client-id client-id-required cannot be specified in RAML Ninguna 131. What is the response to a web client request to http://localhost:8081?Ejercicio para importar en Anypoint Studio. Pulsa aquí. After Before Validation Error null Ninguna 132. An app team is developing a mobile banking app. It took them two months to create their own APIs to access transaction information from a central database. The app team later found out that another team had already built an API that accesses the transaction information they need. According to MuleSoft, what organization structure could have saved the app team two months of development time? Center of Excellence Center for Enablement MuleSoft Support Center Central API Review Board Ninguna 133. Where would you create SLA Tiers for an API? Exchange API Manager Anypoint Studio In RAML specifications Ninguna 134. Refer to the exhibit. The Batch Job processes, filters and aggregates records, What is the expected output from the Logger component?Ejercicio para importar en Anypoint Studio. Pulsa aquí. [10. 20, 30. 40, 50, 60] [10. 20] [30, 40] [50, 60] [20, 40, 60] [20. 40] [60] Ninguna 135. The error occurs when a project is run in Anypoint Studio. The project, which has a dependency that is not in the MuleSoft Maven repository, was created and successfully run on a different computer.[WARNING] The POM for com.mulesoft.training:mock-servers:jor:1.1.2 is missing, no dependency information available[INFO] ------------------------------------------------- [INFO] BUILD FAILURE[INFO] -------------------------------------------------[INFO] Total time: 0.253 s[INFO] Finished at: 2018-06-14T10:52:39-07:00[INFO] Final Memory: 190M/867M[INFO] -------------------------------------------------[ERROR] Failed to execute goal on project app-server: Could not resolve dependencies for project com.mycompany:app-server:mule-application:1.0.0-SNAPSHOT: Failure to find com.mulesoft.training:mock-servers:jar:1.1.2 in https://repository.mulesoft.org/nexus-ee/content/repositories/releases-ee/ was cached in the local repository, resolution will not be reattempted until the update interval of MuleRepository has elapsed or updates are forced -> [Help 1]What is the next step to fix the error to get the project to run successfully? Edit the dependency in the Mule project's pom.xml file Install the dependency to the computer's local Maven repository Deploy the dependency to MuleSoft's Maven repository Add the dependency to the MULE_HOME/bin folder Ninguna 136. What data is expected by the POST /accounts endpoint? { "name": "Geordi La Forge", "address": "1 Forge Way, Midgard, CA 95298" "customer_since": "2014-01-04"} <item> <name>Geordi La Forge</name> <address>1 Forge Way, Midgard, CA 95298</address> <customer_since>2014-01-04</customer_since></item> <item> <name>Geordi La Forge</name> <address>1 Forge Way, Midgard, CA 95298</address> <customer_since>2014-01-04</customer_since> <bank_agent_id>48-SJT-282924-KL</bank_agent_id></item> { "name": "Geordi La Forge", "address": "1 Forge Way, Midgard, CA 95298", "customer_since": "2014-01-04"} Ninguna 137. What execution model is used by For Each and Batch Job scopes? For Each is single-threaded and Batch Job is multi-threaded Both are single-threaded Both are multi-threaded Batch Job is single-threaded and For Each Is multi-threaded Ninguna 138. The new RAML spec has been published to Anypoint Exchange with client credentials.What is the next step to gain access to the API? Request access to the API in Anypoint Exchange Email the owners of the API Create a new client application No additional steps needed Ninguna 139. What path setting is required for an HTTP Listener endpoint to route all requests to an APIkit router? /(*) / /() “/*” Ninguna 140. An organization's Center for enablement (C4E)has built foundational assets (API specifications and implementation templates, common frameworks, and best practices guides) and published them to Anypoint Exchange.What is a metric related to these foundational assets that helps the organization measure the success of it's C4E efforts? Utilization counts of foundational assets in production applications Correlation of each foundational asset with the counts of developers that download such asset Correlation of key performance indicators (KPI) of production applications with foundational assets Count how many Lines Of Business (LoBs) onsumed each foundational asset Ninguna 141. Refer to the exhibits. A web client sends a POST request to the HTTP Listener and the Validation component in the Try scope throws an error.What response message is returned to the web client?Ejercicio para importar en Anypoint Studio. Pulsa aquí. Validation Error "END" "ERROR1" "ERROR2" Ninguna 142. According to MuleSoft, what is the Center for Enablement’s role in the new IT operating model? Implements line of business projects to enforce common security requirements Creates and manages discoverable assets to be consumed by line of business developers Centrally manages partners and consultants to implement line of business projects Ninguna 143. How many Mule applications can run on a CloudHub worker? At most one At least one Depends None of these Ninguna 144. What MuleSoft API-led connectivity layer is intended to expose part of a backend database without business logic? Data layer Process layer Experience layer System layer Ninguna 145. A Mule event is composed of a hierarchy of objects. Where in the hierarchy are variables stored? Mule event Mule message payload Mule Message Mule message attributes Ninguna 146. What is the output type of the DataWeave map operator? String Array Map Object Ninguna 147. The main flow contains an HTTP Request. The HTTP Listeners and HTTP Request use default configurations.What values are accessible in the child flow after a web client submits a request to http://localhost:8081/order?color=red? Ejercicio para importar en Anypoint Studio. Pulsa aquí. payload payloadquantity var payloadcolor query param payloadquantity var color query param Ninguna 148. Which of the below activity doesn't support parallel execution? Scatter-Gather Router First Successful Router Parallel For Each Batch Job Ninguna 149. Which keyword do you use to create a new function in DataWeave? function fun func map Ninguna 150. Mule application implements a REST API that accepts GET requests from web clients on the URLs: http://acme.com/order/status/ and http://acme.com/customer/status/. What path value can be set in the HTTP GE~ event source to accept web client requests from both of these URLs? *[order,customer]/status */status ?[order,customer]/status *status Ninguna 151. A flow needs to combine and return data from two different data sources. It contains a Database SELECT operation followed by an HTTP Request operation.What is the method to capture both payloads so the payload from the second request does not overwrite that from the first? Put the Database SELECT operation inside a Cache scope Put the Database SELECT operation inside a Message Enricher scope Nothing, previous payloads are combined into the next payload Save the payload from the Database SELECT operation to a variable Ninguna 152. What is the output payload in the On Complete phase?Ejercicio para importar en Anypoint Studio. Pulsa aquí. summary statistics with NO record data The records processed by the last batch step: [StepTwol, StepTwo2, StepTwo3] The records processed by all batch steps: [StepTwostepOnel, stepTwostepOne2, StepTwoStepOne3] The original payload: [1,2,3] Ninguna 153. In the requestFlow an HTTP Request operation is configured to send an HTTP request with an XML payload. The request is sent to the HTTP Listener in the transform Flow.That flow transforms the incoming payload into JSON format and returns the response to the HTTP request. The response of the request is stored in a target variable named the Result. What is the payload at the Logger component after the HTTP Request? A non-empty Java object The original XML payload null The returned JSON response Ninguna 154. Which Mule component provides a real-time, graphical representation of the APIs and mule applications that are running and discoverable? API Notebook Runtime Manager Anypoint Visualizer API Manager Ninguna 155. A web client submits a request to http://localhost:8081?flrstName=john. What is the correct DataWeave expression to access the firstName parameter? #[attributes.queryParams.firstName] #[message.queryParams.firstName] #[message.inboundProperties.'http.query.params'.firstName] #[attributes.'http.query.params'.firstName] Ninguna 156. The Validation component in the private flow throws an error. What response message is returned to a client request to the main flow's HTTP Listener? Ejercicio para importar en Anypoint Studio. Pulsa aquí. Error - private flow Error - main flow Success - main flow Validation Error Ninguna 157. What module and operation will throw an error if a Mule events payload is not number? Filter modules Is Number operation Validation modules Is Number operation Validation modules Is not Number operation None of these Ninguna 158. What can be added to the flow to persist data across different flow executions? Key/value pairs in the ObjectStore Properties of the Mule runtime flow object Properties of the Mule runtime app object Session variables Ninguna 159. How can you call a subflow from Dataweave? Not possible in Mule 4 Import function Lookup function Include function Ninguna 160. A Mule application configured with Autodiscovery implements an API. Where is governance enforced for policies defined for this Mule application? In Runtime Manager In Mule application In API Designer In API Manager Ninguna 161. How to import Core (dw::Core) module into your DataWeave scripts? #include dw::core Not needed import core import dw::core Ninguna 162. What are the latest specification of RAML available? 1.2 1 0.8 2 Ninguna 163. In the execution of the Scatter-Gather, the "steep 1 sec" Flow Reference takes about 1 second to complete, and the "sleep 5 sees" Row Reference takes about 5 seconds to complete.About how many seconds does it take from the time the Scatter-Gather is called until the Set Payload transformer is called? 0 1 5 6 Ninguna 164. A web client submits a request to http://localhost:8081. What is the structure of the payload at the end of the flow?Ejercicio para importar en Anypoint Studio. Pulsa aquí. ['Banana', 'Apple'] { "0": "Banana", "1": "Apple"} { "attributes": ..., "payload": ['Banana', 'Apple']} { "0": { "attributes": ..., "payload": "Banana" } "1": { "attributes": ..., "payload": "Apple" }} Ninguna 165. What is the correct syntax to add an employee ID as a URI parameter in an HTTP Listener path? (employeelD) ${employeelD} {employeelD} #[employeelD] Ninguna 166. The main flow contains a Flow Reference to the child flow. A web client sends a GET request to the main flow's HTTP Listener that includes a make query parameter. What values are accessible in the child flow?Ejercicio para importar en Anypoint Studio. Pulsa aquí. payload payloadmake query param payloadmodel var payloadmake query param model var Ninguna 167. A web client sends a GET request to the HTTP Listener. What response message is returned to the web client? "" "End" "Start" "String is not blank" Ninguna 168. A Mule application contains a global error handler configured to catch any errors. Where must the global error handler be specified so that the global error handler catches all errors from flows without their own error handlers? A configuration properties file Nowhere, the global error handler is automatically used A global element The pom.xml file Ninguna 169. A mule project contains MySQL database dependency . The project is exported from Anypoint Studio so that it can be deployed to Cloudhub.What export options needs to be selected to create the smallest deployable archive that will successfully deploy to Cloudhub? Select both the options1) Attach project sources 2) Include project module and dependencies No need to select any of the below options1) Attach project sources 2) Include project module and dependencies Select only below option2) Include project module and dependencies Select only below option1) Attach project sources Ninguna 170. The Mule Application is being debugged in Anypoint Studio and stops at breakpoint. What is the value of payload displayed in debugger at this breakpoint?Ejercicio para importar en Anypoint Studio. Pulsa aquí. Processing Begin Finished Ninguna 171. The Mule application's connectors are configured with property placeholders whose values are set in the config.yaml file.What must be added to the Mule application to link the config.yaml file's values with the property placeholders? A configuration-properties element in the acme-app.xml file A dependency element in the pom.xml file A file-config element in the acrne-app.xml file A propertiesFile key/value pair in the mule-artifact.json file Ninguna 172. What is the minimum Cloudhub worker size that can be specified while deploying mule application? 0.2 vCores 0.5 vCores 1.0 vCores 0.1 vCores Ninguna 173. An SLA based policy has been enabled in API Manager.What is the next step to configure the API proxy to enforce the new SLA policy? Add new property placeholders and redeploy the API proxy Add new environment variables and restart the API proxy Restart the API proxy to clear the API policy cache Add required headers to the RAML specification and redeploy the new API proxy Ninguna 174. Refer to the exhibits The Mule application does NOT define any global error handlers.A web client sends a POST request to the Multi application with this input payload The File Write operation throws a FILECONNECTIVITY error.What response message is returned to the web client?Ejercicio para importar en Anypoint Studio. Pulsa aquí. "ORDER NOT_CREATED" "OTHER ERROR" "File written" "FILE:CONNECTIVITY" Ninguna 175. Refer to the exhibits. APIKit router is used to generate the flow components for RAML specification. The Mule application must be available to REST clients using the two URL's: http://localhost:8081/internal and http://localhost:8081/external /books: get: post: /order: get: patch: /members: get: How many APIKit Router components are generated to handle requests to every endpoint defined in RAML specification? 1 2 3 5 Ninguna 176. A Mule project contains a DataWeave module called MyModule.dwl that defines a function named formatString. The module is located in the project's src/main/resources/modules folder.What is the correct way in DataWeave code to import MyModule using a wildcard and then call the module's format String function? %dw 2.0output application/jsonimport * from modules.MyModule---MyModule.formatString("annie point") %dw 2.0output application/jsonimport * from modules::MyModule---MyModule::formatString("annie point") %dw 2.0output application/jsonimport * from modules.MyModule---formatString("annie point") %dw 2.0output application/jsonimport * from modules::MyModule---formatString("annie point") Ninguna 177. How many private flows does APIKIt generate from RAML specification? 1 2 3 4 Ninguna 178. The main flow contains a Flow Reference component configured to call the child flow.What part(s) of a Mule event passed to the Flow Reference component are available in the child flow? The payload and all attributes The payload and all variables The entire Mule event The payload Ninguna 179. Refer to the exhibits. What payload is logged at the end of the main flow?Ejercicio para importar en Anypoint Studio. Pulsa aquí. [order1, order2, order3, order4] [1, 2, 3, 4] order4 order1order2order3order4 Ninguna 180. A Mule project contains a DataWeave module file WebStore.dwl that defines a function named loginUser. The module file is located in the projects src/main/resources/libs/dw folder.What is correct DataWeave code to import all of the WebStore.dwl file's functions and then call the loginUser function for the login "cindy.park@example.com"? import libs.dw---WebStore.loginUser("cindy.park@example.com") import * from libs::dw---WebStore::loginUser("cindy.park@example.com") import libs.dw.WebStore---loginUser("cindy.park@example.com") import * from libs::dw::WebStore---loginUser("cindy.park@example.com") Ninguna 181. Pick the component with which DataWeave is tightly integrated. All APIs Mule Runtime Exchange Flow Designer Ninguna 182. How we can scale deployed Mule application vertically on cloudhub? Changing worker size Adding multiple workers Mule applications can be scaled only horizontally Option 1 and 2 both can be used Ninguna 183. What asset cannot be created using Design Center? Mule Applications API Fragments API Specifications API Portals Ninguna 184. The expression for the Choice router needs to be written. What is a valid expression to route Mule events to the non-default flow? Ejercicio para importar en Anypoint Studio. Pulsa aquí. #['MuleSoft' == payload.company] #[ company = "MuleSoft" ] #[ if( company = "MuleSoft") ] #[ if( 'MuleSoff == payload.company) ] Ninguna 185. Set paylaod transformer is set the firstName and lastName of the customer as shown in below images. What is the correct Dataweave expression which can be added in message attribute of a Logger activity to access firstName (which in this case is Madhav) from the incoming event? Ejercicio para importar en Anypoint Studio. Pulsa aquí. firstName customer.firstName vars."customer.firstName" vars."customer"."firstName" Ninguna 186. What valid RAML retrieves details on a specific by its orderld as a URL parameter? /orders: /{orderId}: get: /orders: /orderId: get: /orders: get: /{orderId}: /orders: /get: /orderId: Ninguna 187. A flow has a JMS Publish consume operation followed by a JMS Publish operation. Both of these operations have the default configurations.Which operation is asynchronous and which one is synchronous? Publish consume: Synchronous. Publish: Asynchronous Publish consume: Asynchronous. Publish: Synchronous Publish consume: Asynchronous. Publish: Asynchronous Publish consume: Synchronous. Publish: Synchronous Ninguna 188. The main flow contains a Flow Reference for the child flow. What values are accessible in the child flow after a web client submits a request to http://localhost:8081/order?color=red? payload payloadquantity var payloadcolor query param payloadquantity var color query param Ninguna 189. Which out of below is not an asset? Template Connector Exchange Example Ninguna 190. Mule application has an HTTP request configuration where host name is hardcoded. Organization is looking to move host and port values to configuration file. What valid expression can be used to so that HTTP configuration can pick the value from configuration file? #[training.host] ${http.host} #{training.host} ${training.host} Ninguna 191. El value del Set Payload es: Delta A1B2C3 2015/03/20 A web client submits a request to http://localhost:8081/flights. What is the result at the end of the flow?Ejercicio para importar en Anypoint Studio. Pulsa aquí. "string" "Java" "object" "XML" Ninguna 192. The Set Payload transformer's value is set to {'year': '2020'}. What message value should be added to the Logger component to output the message 'The year is 2020', without hardcoding 2020?Ejercicio para importar en Anypoint Studio. Pulsa aquí. #[The year is $(payload .year)] The year is#[payload.year] #[The year is " + payload.year] #["The year is "++ payload.year] Ninguna 193. Refer to the exhibits. The main flow contains an HTTP Request in the middle of the flow. The HTTP Listeners and HTTP Request use default configurations.A web client submits a request to the main flow's HTTP Listener that includes query parameters for the pedigree of the piano.What values are accessible to the Logger component at the end of the main flow?Ejercicio para importar en Anypoint Studio. Pulsa aquí. payload payloadpedigree query params payloadproducer var payloadpedigree query params producer var Ninguna 194. A web client submits the request to the HTTP Listener. What response message would be returned to web client?Ejercicio para importar en Anypoint Studio. Pulsa aquí. End String is not blank No response would be sent back to client and request will get errored out in Mule Start Ninguna 195. The input array of strings is processed by the batch job that processes, filters, and aggregates the values. What is the last message logged by the Logger component after the batch job completes processing?Ejercicio para importar en Anypoint Studio. Pulsa aquí. [ ["A", "C", "D" ], ["E"] ] [''E''] [''D", "E"] [ "A", "C, "D", "E" ] Ninguna 196. In the Choice router, the When expression for the domesticShipping route is set to "#[payload = 'FR']". What is logged after the Choice router completes? A string with value "FR" A DataWeave syntax error The result of the internationalShipping flow The result of the domesticShipoing flow Ninguna 197. A REST connect module is generated for a RAML specification. and then the rest connect module is imported in mule application in Anypoint Studio. For each method of the RAML specification , what does the REST connect module provide? A scope A flow An operation An event source Ninguna 198. What is the correct way to format the decimal 200.1234 as a string to two decimal places? 200.1234 as string as format: ".0#" 200.1234 as String {format: ".0#"} 200.1234 as String as format: ".0#" 200.1234 as string {format: ".0#"} Ninguna 199. What is the correct DataWeave expression for the Set Payload transformer to call the createCustomerObject flow with values for the first and last names of a new customer? lookup( createCustomerObJect( "Alice", "Green- ) ) createCustomerObject( { first: "Alice", last: "Green" } ) lookup( "createCustomerObject", { first: "Alice", last: "Green" } ) createCustomerObject( "Alice", "Green") Ninguna 200. Refer to the exhibit. The main flow contains an HTTP Request in the middle of the flow. The HTTP Listeners and HTTP request use default configurations.What values are accessible to the Logger at the end of the flow after a web client submit request to http://local:801/order?color=red? payload payload, quantity var payload, color query param payload, quantity var, color query param Ninguna 201. Which of the below functionality is provided by zip operator in DataWeave? Merges elements of two lists (arrays) into a single list Used for sending attachments Minimize the size of long text using encoding. All of the above Ninguna 202. What valid RAML retrieves details on a specific customer by its customerId as a URI parameter? /customers: /get: /customerId: /customers: /{customerId}: get: /customers: /customerId: get: /customers: get: {customerId}: Ninguna 203. Following Mulesoft's recommended API-led connectivity approach , an organization has created an application network. The organization now needs to create API's to transform , orchestrate and aggregate the data provided by the other API's in the application network. This API should be flexible enought ot handle the data from additional API's in future. According to Mulesoft's recommended API-led connectivity approach, what is the best layer for this new API? Process layer System layer Experience layer Data layer Ninguna 204. According to Semantic Versioning, which version would you change for incompatible API changes? No change MINOR MAJOR PATCH Ninguna 205. A web client submits a request to below flow. What is the output at the end of the flow?Ejercicio para importar en Anypoint Studio. Pulsa aquí. String Object Java XML Ninguna 206. A Mule application's HTTP Listener is configured with the HTTP protocol. The HTTP listeners port attribute is configured with a property placeholder named http.port. The mule application sets the http.port property placeholder's value to 9090. The Mule application is deployed to CloudHub without setting any properties in the Runtime manager Properties tab and a log message reports the status of the HTTP listener after the Mule application deployment completes. After the mule applications is deployed, what information is reported in the worker logs related to the port on which the Mule application's HTTP Listener listens? The HTTP Listener is listening on port 80 The HTTP Listener is listening on port 9090 The HTTP Listener is listening on port 8081 The HTTP Listener failed to bind to the port and is not listening for connections Ninguna 207. A web client sends sale data in a POST request to the Mule application: SS-4848-44KK-4SYQ anniepoint@acme.com Annie Point Car seat 1 59The Transform Message component then enrich the payload by prepending a vendor name to the sale data. What is written to the sales.csv file when the flow executes?Ejercicio para importar en Anypoint Studio. Pulsa aquí. The enriched payload in JSON format The enriched payload in XML format The enriched payload in CSV format An error message Ninguna 208. A Utility.dwl file is located in a Mule project at src/main/resources/modules. The Utility.dwl file defines a function named pascalize that reformats strings to pascal case.What is the correct DataWeave to call the pascalize function in a Transform Message component? %dw 2.0 output application/json import modules::Utility --- Utility::encryptString( "John Smith" ) %dw 2.0 output application/json import modules::Utility --- encryptString( "John Smith" ) %dw 2.0 output application/json import modules.Utility --- encryptString( "John Smith" ) %dw 2.0 output application/json import modules.Utility --- Utility.encryptString( "John Smith" ) Ninguna 209. Which keyword do you use to create a new function in DataWeave? function fun func map Ninguna 210. What data is expected by the POST /accounts endpoint? { "name": "Geordi La Forge", "address": "1 Forge Way, Midgard, CA 95298" "customer_since": "2014-01-04"} <item> <name>Geordi La Forge</name> <address>1 Forge Way, Midgard, CA 95298</address> <customer_since>2014-01-04</customer_since></item> <item> <name>Geordi La Forge</name> <address>1 Forge Way, Midgard, CA 95298</address> <customer_since>2014-01-04</customer_since> <bank_agent_id>48-SJT-282924-KL</bank_agent_id></item> { "name": "Geordi La Forge", "address": "1 Forge Way, Midgard, CA 95298", "customer_since": "2014-01-04"} Ninguna Please fill in the comment box below. Time's up