ExamGecko
Home Home / MuleSoft / MCIA Level 1 Maintenance

MuleSoft MCIA Level 1 Maintenance Practice Test - Questions Answers, Page 7

Question list
Search
Search

List of questions

Search

Related questions











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 remaining99000 records
B.
The second replicas will take over processing the remaining99000 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

One of the backend systems involved by the API implementation enforces rate limits on the number of request a particle client can make.

Both the back-end system and API implementation are deployed to several non-production environments including the staging environment and to a particular production environment. Rate limiting of the back-end system applies to all non-production environments.

The production environment however does not have any rate limiting.

What is the cost-effective approach to conduct performance test of the API implementation in the non-production staging environment?

A.
Including logic within the API implementation that bypasses in locations of the back-end system in the staging environment and invoke a Mocking service that replicates typical back-end system responses Then conduct performance test using this API implementation
A.
Including logic within the API implementation that bypasses in locations of the back-end system in the staging environment and invoke a Mocking service that replicates typical back-end system responses Then conduct performance test using this API implementation
Answers
B.
Use MUnit to simulate standard responses from the back-end system.Then conduct performance test to identify other bottlenecks in the system
B.
Use MUnit to simulate standard responses from the back-end system.Then conduct performance test to identify other bottlenecks in the system
Answers
C.
Create a Mocking service that replicates the back-end system's production performance characteristics Then configure the API implementation to use the mocking service and conduct the performance test
C.
Create a Mocking service that replicates the back-end system's production performance characteristics Then configure the API implementation to use the mocking service and conduct the performance test
Answers
D.
Conduct scaled-down performance tests in the staging environment against rate-limiting back-end system. Then upscale performance results to full production scale
D.
Conduct scaled-down performance tests in the staging environment against rate-limiting back-end system. Then upscale performance results to full production scale
Answers
Suggested answer: C

A system API EmployeeSAPI is used to fetch employee's data from an underlying SQL database.

The architect must design a caching strategy to query the database only when there is an update to the employees stable or else return a cached response in order to minimize the number of redundant transactions being handled by the database.

What must the architect do to achieve the caching objective?

A.
Use an On Table Row on employees table and call invalidate cacheUse an object store caching strategy and expiration interval to empty
A.
Use an On Table Row on employees table and call invalidate cacheUse an object store caching strategy and expiration interval to empty
Answers
B.
Use a Scheduler with a fixed frequency every hour triggering an invalidate cache flow Use an object store caching strategy and expiration interval to empty
B.
Use a Scheduler with a fixed frequency every hour triggering an invalidate cache flow Use an object store caching strategy and expiration interval to empty
Answers
C.
Use a Scheduler with a fixed frequency every hour triggering an invalidate cache flow Use an object store caching strategy and set expiration interval to 1-hour
C.
Use a Scheduler with a fixed frequency every hour triggering an invalidate cache flow Use an object store caching strategy and set expiration interval to 1-hour
Answers
D.
Use an on table rule on employees table call invalidate cache and said new employees data to cache Use an object store caching strategy and set expiration interval to 1-hour
D.
Use an on table rule on employees table call invalidate cache and said new employees data to cache Use an object store caching strategy and set expiration interval to 1-hour
Answers
Suggested answer: A

A leading bank implementing new mule API.

The purpose of API to fetch the customer account balances from the backend application and display them on the online platform the online banking platform. The online banking platform will send an array of accounts to Mule API get the account balances.

As a part of the processing the Mule API needs to insert the data into the database for auditing purposes and this process should not have any performance related implications on the account balance retrieval flow How should this requirement be implemented to achieve better throughput?

A.
Implement the Async scope fetch the data from the backend application and to insert records in the Audit database
A.
Implement the Async scope fetch the data from the backend application and to insert records in the Audit database
Answers
B.
Implement a for each scope to fetch the data from the back-end application and to insert records into the Audit database
B.
Implement a for each scope to fetch the data from the back-end application and to insert records into the Audit database
Answers
C.
Implement a try-catch scope to fetch the data from the back-end application and use the Async scope to insert records into the Audit database
C.
Implement a try-catch scope to fetch the data from the back-end application and use the Async scope to insert records into the Audit database
Answers
D.
Implement parallel for each scope to fetch the data from the backend application and use Async scope to insert the records into the Audit database
D.
Implement parallel for each scope to fetch the data from the backend application and use Async scope to insert the records into the Audit database
Answers
Suggested answer: D
Total 116 questions
Go to page: of 12