ExamGecko
Home Home / MuleSoft / MCIA - Level 1

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

Question list
Search
Search

List of questions

Search

Related questions











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?

A.
In-memory non repeatable stream
A.
In-memory non repeatable stream
Answers
B.
File based non-repeatable stream
B.
File based non-repeatable stream
Answers
C.
In-memory repeatable stream
C.
In-memory repeatable stream
Answers
D.
File based repeatable storage
D.
File based repeatable storage
Answers
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

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?

A.
Object Store REST API
A.
Object Store REST API
Answers
B.
Object Store connector
B.
Object Store connector
Answers
C.
Both of the above option will have same latency
C.
Both of the above option will have same latency
Answers
D.
Object Store of one mule application cannot be accessed by other mule application.
D.
Object Store of one mule application cannot be accessed by other mule application.
Answers
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.

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?

A.
Make use of Java module
A.
Make use of Java module
Answers
B.
Create similar model for Mule applications
B.
Create similar model for Mule applications
Answers
C.
Create a custom application to read Java code and make it available for Mule application
C.
Create a custom application to read Java code and make it available for Mule application
Answers
D.
Use Anypoint exchange
D.
Use Anypoint exchange
Answers
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/

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?

A.
Only errored route will be rolled back
A.
Only errored route will be rolled back
Answers
B.
All routes will be rolled back
B.
All routes will be rolled back
Answers
C.
Scatter Gather router cannot be part of transaction
C.
Scatter Gather router cannot be part of transaction
Answers
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

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

A.
Secure Scheme
A.
Secure Scheme
Answers
B.
client id enforcement policy
B.
client id enforcement policy
Answers
C.
Connected apps
C.
Connected apps
Answers
D.
Certificates
D.
Certificates
Answers
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

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

A.
1 vCores
A.
1 vCores
Answers
B.
2 vCores
B.
2 vCores
Answers
C.
4 vCores
C.
4 vCores
Answers
D.
16 vCores
D.
16 vCores
Answers
Suggested answer: D

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.
A message broker
A.
A message broker
Answers
B.
An HTTP Load Balancer
B.
An HTTP Load Balancer
Answers
C.
A database
C.
A database
Answers
D.
An Object Store
D.
An Object Store
Answers
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.

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?

A.
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
A.
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
Answers
B.
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
B.
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
Answers
C.
Implement a For-Each scope to invoke the two vendor applicationsUse until successful scope to implement the retry mechanism for the timeout errors
C.
Implement a For-Each scope to invoke the two vendor applicationsUse until successful scope to implement the retry mechanism for the timeout errors
Answers
D.
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
D.
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
Answers
Suggested answer: A

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?

A.
AsyncAPI over HTTPSAMQP with RabbitMQ JSON/REST over HTTPS
A.
AsyncAPI over HTTPSAMQP with RabbitMQ JSON/REST over HTTPS
Answers
B.
XML over ActiveMQ XML over SFTP XML/REST over HTTPS
B.
XML over ActiveMQ XML over SFTP XML/REST over HTTPS
Answers
C.
CSV over FTP YAM L over TLS JSON over HTTPS
C.
CSV over FTP YAM L over TLS JSON over HTTPS
Answers
D.
SOAP over HTTPS HOP over TLS gRPC over HTTPS
D.
SOAP over HTTPS HOP over TLS gRPC over HTTPS
Answers
Suggested answer: A

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?

A.
The remaining 99000 records will be lost and left and processed
A.
The remaining 99000 records will be lost and left and processed
Answers
B.
The second replicas will take over processing the remaining 99000 records
B.
The second replicas will take over processing the remaining 99000 records
Answers
C.
A new replacement replica will be available and will be process all 1,00,000 records from scratch leading to duplicate record processing
C.
A new replacement replica will be available and will be process all 1,00,000 records from scratch leading to duplicate record processing
Answers
D.
A new placement replica will be available and will take or processing the remaining 99,000 records
D.
A new placement replica will be available and will take or processing the remaining 99,000 records
Answers
Suggested answer: B
Total 244 questions
Go to page: of 25