ExamGecko
Home / MuleSoft / MCIA - Level 1 / List of questions
Ask Question

MuleSoft MCIA - Level 1 Practice Test - Questions Answers, Page 14

List of questions

Question 131

Report
Export
Collapse

As a part of project requirement, client will send a stream of data to mule application. Payload size can vary between 10mb to 5GB. Mule application is required to transform the data and send across multiple sftp servers. Due to the cost cuttings in the organization, mule application can only be allocated one worker with size of 0.2 vCore.

As an integration architect , which streaming strategy you would suggest to handle this scenario?

In-memory non repeatable stream
In-memory non repeatable stream
File based non-repeatable stream
File based non-repeatable stream
In-memory repeatable stream
In-memory repeatable stream
File based repeatable storage
File based repeatable storage
Suggested answer: D

Explanation:

As the question says that data needs to be sent across multiple sftp serves , we cannot use nonrepeatable streams. The non-repeatable strategy disables repeatable streams, which enables you to read an input stream only once.

You cant use in memory storage because with 0.2 vcore you will get only 1 GB of heap memory.

Hence application will error out for file more than 1 GB.

Hence the correct option is file base repeatable stream

asked 18/09/2024
Tobias Barcelos
42 questions

Question 132

Report
Export
Collapse

Mule application muleA deployed in cloudhub uses Object Store v2 to share data across instances. As a part of new requirement , application muleB which is deployed in same region wants to access this Object Store.

Which of the following option you would suggest which will have minimum latency in this scenario?

Object Store REST API
Object Store REST API
Object Store connector
Object Store connector
Both of the above option will have same latency
Both of the above option will have same latency
Object Store of one mule application cannot be accessed by other mule application.
Object Store of one mule application cannot be accessed by other mule application.
Suggested answer: A

Explanation:

V2 Rest API is recommended for on premise applications to access Object Store. It also comes with overhead of encryption and security of using rest api. With Object Store v2, the API call is localized to the same data center as the

Runtime Manager app.

But in this case requirement is to access the OS of other mule application and not the same mule application.

You can configure a Mule app to use the Object Store REST API to store and retrieve values from an object store in another Mule app.

However, Object Store v2 is not designed for app-to-app communication.

asked 18/09/2024
Alvin Thomas
46 questions

Question 133

Report
Export
Collapse

As a part of project , existing java implementation is being migrated to Mulesoft. Business is very tight on the budget and wish to complete the project in most economical way possible.

Canonical object model using java is already a part of existing implementation. Same object model is required by mule application for a business use case. What is the best way to achieve this?

Make use of Java module
Make use of Java module
Create similar model for Mule applications
Create similar model for Mule applications
Create a custom application to read Java code and make it available for Mule application
Create a custom application to read Java code and make it available for Mule application
Use Anypoint exchange
Use Anypoint exchange
Suggested answer: A

Explanation:

Mule 4 is built to:

ï Minimize the need for custom code.

ï Avoid the need for you to know or understand Java.

However, some advanced uses cases require integration with custom Java code, such as:

ï Reuse of a library, such as a tax calculation library.

ï Reuse of a canonical object model that is standard in the organization.

ï Execution of custom logic using Java.

Mule ref doc : https://docs.mulesoft.com/java-module/1.2/

asked 18/09/2024
Bartosz Szewczyk
37 questions

Question 134

Report
Export
Collapse

In one of the critical payment related mule application, transaction is being used . As an enhancement to implementation , scatter gather route is introduced which is also the part of transaction group. Scatter gather route has 4 routes.

What will be the behavior of the Mule application in case of error occurs in 4th route of the scattergather router and transaction needs to be rolled back?

Only errored route will be rolled back
Only errored route will be rolled back
All routes will be rolled back
All routes will be rolled back
Scatter Gather router cannot be part of transaction
Scatter Gather router cannot be part of transaction
Suggested answer: B

Explanation:

ï Scatter Gather: When running within a transaction, Scatter Gather does not execute in parallel. This means that the second route is executed after the first one is processed, the third after the second one, etc. In case of error, all routes will be rolled back

asked 18/09/2024
Kamil Stonjek
36 questions

Question 135

Report
Export
Collapse

Which Mulesoft feature helps users to delegate their access without sharing sensitive credentials or giving full control of accounts to 3rd parties?

Secure Scheme
Secure Scheme
client id enforcement policy
client id enforcement policy
Connected apps
Connected apps
Certificates
Certificates
Suggested answer: C

Explanation:

Connected Apps

The Connected Apps feature provides a framework that enables an external application to integrate with Anypoint Platform using APIs through OAuth 2.0 and OpenID Connect. Connected apps help users delegate their access without sharing sensitive credentials or giving full control of their accounts to third parties. Actions taken by connected apps are audited, and users can also revoke access at any time. Note that some products do not currently include client IDs in this release of the Connected Apps feature. The Connected Apps feature enables you to use secure authentication protocols and control an app's access to user data. Additionally, end users can authorize the app to access their Anypoint

Platform data.

Mule Ref Doc : https://docs.mulesoft.com/access-management/connected-apps-overview

asked 18/09/2024
Andrey Zhukovskiy
36 questions

Question 136

Report
Export
Collapse

What is maximum vCores can be allocated to application deployed to CloudHub?

1 vCores
1 vCores
2 vCores
2 vCores
4 vCores
4 vCores
16 vCores
16 vCores
Suggested answer: D
asked 18/09/2024
Kristian Gutierrez
47 questions

Question 137

Report
Export
Collapse

An organization has just developed a Mule application that implements a REST API. The mule application will be deployed to a cluster of customer hosted Mule runtimes.

What additional infrastructure component must the customer provide in order to distribute inbound API requests across the Mule runtimes of the cluster?

A message broker
A message broker
An HTTP Load Balancer
An HTTP Load Balancer
A database
A database
An Object Store
An Object Store
Suggested answer: B

Explanation:

Correct answer is An HTTP Load Balancer.

Key thing to note here is that we are deploying application to customer hosted Mule runtime. This means we will need load balancer to route the requests to different instances of the cluster.

Rest all options are distractors and their requirement depends on project use case.

asked 18/09/2024
Eduardo Messias Andrade e Oliveira
35 questions

Question 138

Report
Export
Collapse

An insurance company is implementing a MuleSoft API to get inventory details from the two vendors. Due to network issues, the invocations to vendor applications are getting timed-out intermittently. But the transactions are successful upon reprocessing What is the most performant way of implementing this requirement?

Implement a scatter-gather scope to invoke the two vendor applications on two different route Use the Until-Successful scope to implement the retry mechanism for timeout errors on each route
Implement a scatter-gather scope to invoke the two vendor applications on two different route Use the Until-Successful scope to implement the retry mechanism for timeout errors on each route
Implement a Choice scope to invoke the two vendor applications on two different route Use the try-catch scope to implement the retry mechanism for timeout errors on each route
Implement a Choice scope to invoke the two vendor applications on two different route Use the try-catch scope to implement the retry mechanism for timeout errors on each route
Implement a For-Each scope to invoke the two vendor applicationsUse until successful scope to implement the retry mechanism for the timeout errors
Implement a For-Each scope to invoke the two vendor applicationsUse until successful scope to implement the retry mechanism for the timeout errors
Implement Round-Robin scope to invoke the two vendor applications on two different routes Use the Try-Catch scope to implement retry mechanism for timeout errors on each route
Implement Round-Robin scope to invoke the two vendor applications on two different routes Use the Try-Catch scope to implement retry mechanism for timeout errors on each route
Suggested answer: A
asked 18/09/2024
STEVE MESSANGA
28 questions

Question 139

Report
Export
Collapse

An airline is architecting an API connectivity project to integrate its flight data into an online aggregation website. The interface must allow for secure communication high-performance and asynchronous message exchange.

What are suitable interface technologies for this integration assuming that Mulesoft fully supports these technologies and that Anypoint connectors exist for these interfaces?

AsyncAPI over HTTPSAMQP with RabbitMQ JSON/REST over HTTPS
AsyncAPI over HTTPSAMQP with RabbitMQ JSON/REST over HTTPS
XML over ActiveMQ XML over SFTP XML/REST over HTTPS
XML over ActiveMQ XML over SFTP XML/REST over HTTPS
CSV over FTP YAM L over TLS JSON over HTTPS
CSV over FTP YAM L over TLS JSON over HTTPS
SOAP over HTTPS HOP over TLS gRPC over HTTPS
SOAP over HTTPS HOP over TLS gRPC over HTTPS
Suggested answer: A
asked 18/09/2024
Bruce Baynes
23 questions

Question 140

Report
Export
Collapse

An application deployed to a runtime fabric environment with two cluster replicas is designed to periodically trigger of flow for processing a high-volume set of records from the source system and synchronize with the SaaS system using the Batch job scope After processing 1000 records in a periodic synchronization of 1 lakh records, the replicas in which batch job instance was started went down due to unexpected failure in the runtime fabric environment What is the consequence of losing the replicas that run the Batch job instance?

The remaining 99000 records will be lost and left and processed
The remaining 99000 records will be lost and left and processed
The second replicas will take over processing the remaining 99000 records
The second replicas will take over processing the remaining 99000 records
A new replacement replica will be available and will be process all 1,00,000 records from scratch leading to duplicate record processing
A new replacement replica will be available and will be process all 1,00,000 records from scratch leading to duplicate record processing
A new placement replica will be available and will take or processing the remaining 99,000 records
A new placement replica will be available and will take or processing the remaining 99,000 records
Suggested answer: B
asked 18/09/2024
martijn Spelt
41 questions
Total 244 questions
Go to page: of 25
Search

Related questions