Exam Details

  • Exam Code
    :MCIA-LEVEL-1-MAINTENANCE
  • Exam Name
    :MuleSoft Certified Integration Architect - Level 1 MAINTENANCE
  • Certification
    :MuleSoft Certified Architect
  • Vendor
    :Mulesoft
  • Total Questions
    :116 Q&As
  • Last Updated
    :Jun 01, 2025

Mulesoft MuleSoft Certified Architect MCIA-LEVEL-1-MAINTENANCE Questions & Answers

  • Question 221:

    A project uses Jenkins to implement CI/CD process. It was observed that each Mule package contains some of the Jenkins files and folders for configurations of CI/CD jobs.

    As these files and folders are not part of the actual package, expectation is that these should not be part of deployed archive.

    Which file can be used to exclude these files and folders from the deployed archive?

    A. muleignore

    B. _unTrackMule

    C. mulelnclude

    D. _muleExclude

  • Question 222:

    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

    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

    C. Implement a For-Each scope to invoke the two vendor applications Use until successful scope to implement the retry mechanism for the timeout errors

    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

  • Question 223:

    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

    B. File based non-repeatable stream

    C. In-memory repeatable stream

    D. File based repeatable storage

  • Question 224:

    An Order microservice and a Fulfillment microservice are being designed to communicate with their dients through message-based integration (and NOT through API invocations).

    The Order microservice publishes an Order message (a kind of command message) containing the details of an order to be fulfilled. The intention is that Order messages are only consumed by one Mute application, the Fulfillment microservice.

    The Fulfilment microservice consumes Order messages, fulfills the order described therein, and then publishes an OrderFulfilted message (a kind of event message). Each OrderFulfilted message can be consumed by any interested Mule application, and the Order microservice is one such Mute application.

    What is the most appropriate choice of message broker(s) and message destination(s) in this scenario?

    A. Order messages are sent to an Anypoint MQ exchange OrderFulfilled messages are sent to an Anypoint MQ queue Both microservices interact with Anypoint MQ as the message broker, which must therefore scale to support the load of both microservices

    B. Order messages are sent to a JMS queue. OrderFulfilled messages are sent to a JMS topic Both microservices interact with the same JMS provider (message broker) instance, which must therefore scale to support the load of both microservices

    C. Order messages are sent directly to the Fulfillment microservices. OrderFulfilled messages are sent directly to the Order microservice The Order microservice interacts with one AMQP-compatible message broker and the Fulfillment microservice interacts with a different AMQP-compatible message broker, so that both message brokers can be chosen and scaled to best support the load of each microservice

    D. Order messages are sent to a JMS queue. OrderFulfilled messages are sent to a JMS topic The Order microservice interacts with one JMS provider (message broker) and the Fulfillment microservice interacts with a different JMS provider, so that both message brokers can be chosen and scaled to best support the load of each microservice

  • Question 225:

    What operation can be performed through a JMX agent enabled in a Mule application?

    A. View object store entries

    B. Replay an unsuccessful message

    C. Set a particular tog4J2 log level to TRACE

    D. Deploy a Mule application

  • Question 226:

    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

    B. Create similar model for Mule applications

    C. Create a custom application to read Java code and make it available for Mule application

    D. Use Anypoint exchange

  • Question 227:

    A set of integration Mule applications, some of which expose APIs, are being created to enable a new business process. Various stakeholders may be impacted by this. These stakeholders are a combination of semi-technical users (who understand basic integration terminology and concepts such as JSON and XML) and technically skilled potential consumers of the Mule applications and APIs.

    What Is an effective way for the project team responsible for the Mule applications and APIs being built to communicate with these stakeholders using Anypoint Platform and its supplied toolset?

    A. Use Anypoint Design Center to implement the Mule applications and APIs and give the various stakeholders access to these Design Center projects, so they can collaborate and provide feedback

    B. Create Anypoint Exchange entries with pages elaborating the integration design, including API notebooks (where applicable) to help the stakeholders understand and interact with the Mule applications and APIs at various levels of technical depth

    C. Use Anypoint Exchange to register the various Mule applications and APIs and share the RAML definitions with the stakeholders, so they can be discovered

    D. Capture documentation about the Mule applications and APIs inline within the Mule integration flows and use Anypoint Studio's Export Documentation feature to provide an HTML version of this documentation to the stakeholders

  • Question 228:

    An API client makes an HTTP request to an API gateway with an Accept header containing the value'' application''.

    What is a valid HTTP response payload for this request in the client requested data format?

    A. healthy

    B. {"status" "healthy"}

    C. status(`healthy")

    D. status: healthy

  • Question 229:

    An organization has implemented the cluster with two customer hosted Mule runtimes is hosting an application.

    This application has a flow with a JMS listener configured to consume messages from a queue destination. As an integration architect can you advise which JMS listener configuration must be used to receive messages in all the nodes of the cluster?

    A. Use the parameter primaryNodeOnly= "false" on the JMS listener

    B. Use the parameter primaryNodeOnly= "false" on the JMS listener with a shared subscription

    C. Use the parameter primaryNodeOnly= "true" on the JMS listener with a non-shared subscription

    D. Use the parameter primaryNodeOnly= "true" on the JMS listener

  • Question 230:

    Mule application A receives a request Anypoint MQ message REQU with a payload containing a variable-length list of request objects. Application A uses the For Each scope to split the list into individual objects and sends each object as a

    message to an Anypoint MQ queue.

    Service S listens on that queue, processes each message independently of all other messages, and sends a response message to a response queue.

    Application A listens on that response queue and must in turn create and publish a response Anypoint MQ message RESP with a payload containing the list of responses sent by service S in the same order as the request objects originally

    sent in REQU.

    Assume successful response messages are returned by service S for all request messages.

    What is required so that application A can ensure that the length and order of the list of objects in RESP and REQU match, while at the same time maximizing message throughput?

    A. Use a Scatter-Gather within the For Each scope to ensure response message order Configure the Scatter-Gather with a persistent object store

    B. Perform all communication involving service S synchronously from within the For Each scope, so objects in RESP are in the exact same order as request objects in REQU

    C. Use an Async scope within the For Each scope and collect response messages in a second For Each scope in the order In which they arrive, then send RESP using this list of responses

    D. Keep track of the list length and all object indices in REQU, both in the For Each scope and in all communication involving service Use persistent storage when creating RESP

Related Exams:

Tips on How to Prepare for the Exams

Nowadays, the certification exams become more and more important and required by more and more enterprises when applying for a job. But how to prepare for the exam effectively? How to prepare for the exam in a short time with less efforts? How to get a ideal result and how to find the most reliable resources? Here on Vcedump.com, you will find all the answers. Vcedump.com provide not only Mulesoft exam questions, answers and explanations but also complete assistance on your exam preparation and certification application. If you are confused on your MCIA-LEVEL-1-MAINTENANCE exam preparations and Mulesoft certification application, do not hesitate to visit our Vcedump.com to find your solutions here.