Questions
ayuda
option
My Daypo

ERASED TEST, YOU MAY BE INTERESTED ONMulesoft Dump 1

COMMENTS STATISTICS RECORDS
TAKE THE TEST
Title of test:
Mulesoft Dump 1

Description:
Mulesoft Dump from Tuan Vo

Author:
Tuan Vo
(Other tests from this author)

Creation Date:
29/02/2024

Category:
Others

Number of questions: 38
Share the Test:
Facebook
Twitter
Whatsapp
Share the Test:
Facebook
Twitter
Whatsapp
Last comments
No comments about this test.
Content:
Which keyword do you use to create a new function in DataWeave? A. function B. fun C. func D. map.
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. A scope B. A flow C. An operation D. An event source.
Which out of below is not an asset? A. Template B. Connector C. Exchange D. Example.
What is not true about application properties? A. Application properties can be encrypted B. Application properties can be overridden with system properties C. Application properties can be defined in .yaml file only D. Application properties provide easier way to manage configurable values.
What does C4E stands for in MuleSoft recommended IT operating model? A. Centre for Empowerment B. Centre for Engagement C. Centre for Enablement D. Centre for Excellence.
What is the correct syntax for a Logger component to output a message with the contents of a 3SON Object payload? A. The payload is: $(payload) B. #["The payload is: " ++ payload] C. The payload is: #[payload] D. #["The payload is: " + payload].
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? A. { port : p('db.port')} B. { port : {db:port}} C. { port : p['db.port']} D. Application property cannot be accessed in Dataweave.
Which of the below is not a valid category for connector type? A. Gold B. Select C. Premium D. Community.
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? A. In the organization's public API portal in Anypoint Exchange, from an approved client application for the API proxy B. In Anypoint Studio, from components generated by APIkit for the API specification C. In Anypoint Studio, from components generated by Rest Connect for API specification D. In Runtime Manager, from the properties tab of the deployed approved API proxy.
What is not the function of API Gateway ? A. Determine which traffic is authorized to pass through the API to backend services B. Meter the traffic flowing through C. Logs all transactions , collecting and tracking analytics data D. Specify throttling , security and other policies.
According to MuleSoft, what is the Center for Enablement's role in the new IT operating model? A. Implements line of business projects to enforce common security requirements B. Creates and manages discoverable assets to be consumed by line of business developers C. Centrally manages partners and consultants to implement line of business projects D. Implements line of business projects to enforce common security requirements.
What should this endpoint return considering the API is build using standard practices? http://dev.acme.com/api/patients?year=2021 A. Patient with id 2021 B. Patients from year 2021 C. No patients D. All patients.
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? A. function newProdCode(itemID: Number, productCategory: String) = "PC-" ++ productCategory ++ (itemID as String) B. fun newProdCode{itemID: Number, productCategory: String) -> "PC-" ++ productCategory ++ (itemID as String) C. var newProdCode(itemID: Number, productCategory: String) -> "PC-" ++ productCategory ++ (itemID as String) D. fun newProdCode(itemID: Number, productCategory: String) = "PC-" ++ productCategory ++ (itemID as String).
What is minimal requirement in a flow for a Mule application to compile? A. Event Source B. Event Processors C. Error handlers D. Source and processors both.
A web client submits a request to http://localhost:8081?flrstName=john. What is the correct DataWeave expression to access the firstName parameter? A. #[message.queryParams.firstName] B. #[attributes.queryParams.firstName] C. #[message.inboundProperties.'http.query.params'.firstName] D. #[attributes.'http.query.params'.firstName].
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? A. Process layer B. System layer C. Experience layer D. Data layer.
Which of the below is used by Mule application to manage dependencies which make sharing the projects lightweight and easier? A. Configuration file B. Global element C. POM.xml D. Cloudhub.
Correct answer is {customerID}. A. var toUpper(userName) -> upper(userName) B. fun toUpper(userName) = upper(userName) C. fun toUpper(userName) -> upper(userName) D. var toUpper(userName) = upper(userName).
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? A. Register the same API implementation in Runtime Manager to connect to API Manager B. Modify the API implementation to use auto-discovery to register with API Manager C. Upload the Mule application's JAR file to the API instance in API Manager D. Deploy the same API implementation behind a VPC and configure the VPC to connect to API Manager.
A web client sends a request to http;//localhost:8081?dept=sales. What is the correct DataWeave expression to access the value of dept? A. attributes.dept B. message.queryParams.dept C. vars.dept D. attributes.queryParams.dept.
What statement is a part of MuleSoft's description of an application network? A. Creates and manages high availability and fault tolerant services and infrastructure B. Creates reusable APIs and assets designed to be consumed by other business units C. Creates and manages a collection of JMS messaging services and infrastructure D. Leverages Central IT to deliver complete point-to-point solutions with master data management.
Does a root element required when creating a XML response using Dataweave? A. Depends on requirement B. Not required C. Always required D. None of these.
Which of the module is imported automatically in Dataweave scripts? A. dw::core B. dw::System C. dw::Runtime D. dw::Crypto.
Where is metadata stored in a Mule project A. Config.yaml file B. POM.xml file C. application-types.xml D. Global Element.
What is output of Dataweave flatten function? A. Object B. Map C. Array D. LInkedHashMap.
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? A. Account Type: #[flowVars.accountType] B. Account Type: #[message.inboundProperties.accountType] C. Account Type: # [attributes.accountType] D. Account Type: #[vars.accountType].
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"? A. 1. 1. import libs.etl 2. 2. --- 3. 3. WebStore.loginUser("Todd.Pal@mulesoft.com") B. 1. 1. import * from libs::etl 2. 2. --- 3. 3. WebStore::loginUser("Todd.Pal@mulesoft.com") C. 1. 1. import libs.etl.WebStore 2. 2. --- 3. 3. loginUser("Todd.Pal@mulesoft.com") D. 1. 1. import * from libs::etl::WebStore 2. 2. --- 3. 3. loginUser("Todd.Pal@mulesoft.com").
How are multiple conditions used in a Choice router to route events? A. To route the same event to the matched route of EVERY true condition B. To find the FIRST true condition, then distribute the event to the ONE matched route. C. None of these D. To find the FIRST true condition, then route the same event to the matched route and ALL FOLLOWING routes.
Why would a Mule application use the ${http.port} property placeholder for its HTTP Listener port when it is deployed to CloudHub? A. Allows CloudHub to automatically change the HTTP port to allow external clients to connect to the HTTP Listener B. Allows CloudHub to automatically register the application with API Manager C. Allows MuleSoft Support to troubleshoot the application by connecting directly to the HTTP Listener D. Allows clients to VPN directly to the application at the Mule application's configured HTTP port.
From which application , Organization Administrators can approve/revoke/delete SLA tier access requests A. API Exchange B. API Portal C. API Gateway D. API Manager.
What payload is returned by a Database SELECT operation that does not match any rows in the database? A. false B. null C. Exception D. Empty Array.
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? A. Utilization counts of foundational assets in production applications B. Correlation of each foundational asset with the counts of developers that download such asset C. Correlation of key performance indicators (KPI) of production applications with foundational assets D. Count how many Lines Of Business (LoBs) onsumed each foundational asset.
What module and operation will throw an error if a Mule events payload is not number ? A. Filter modules Is Number operation B. Validation modules Is Number operation C. Validation modules Is not Number operation D. None of these.
Mule application contains ActiveMQ JMS dependency. Mule application was compiled and run successfully in Anypoint Studio. The mule application must now be exported from Anypoint Studio and shared with other developer. What export options should be selected to create the smallest JAR file that can be imported into other developer's Anypoint Studio and run successfully? A. Select only Attach Project Sources only B. Select both Attach Project Sources and Include project modules and dependencies option C. Select the Include project modules and dependencies option only D. De-select both Attach Project Sources and Include project modules and dependencies option.
How would you debug Mule applications? A. By Deploying apps on production B. Checking RAML specifications C. Using debugger component D. Use third party debugger application.
Where would you create SLA Tiers for an API? A. Exchange B. API Manager C. Anypoint Studio D. In RAML specifications.
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? A. examples: !include StudentExample.raml B. examples: #import StudentExample.raml C. examples: !include examples/StudentExample.raml D. examples: #import examples/StudentExample.raml.
In the Database On Table Row operation, what does the Watermark column enable the On Table Row operation to do? A. To avoid duplicate processing of records in a database. B. To delete the most recent records retrieved from a database to enable database caching C. To enable duplicate processing of records in a database D. To save the most recent records retrieved from a database to enable database caching.
Report abuse Consent Terms of use