Pre-Summer Sale Limited Time 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: 65pass65

MuleSoft-Integration-Architect-I Salesforce Certified MuleSoft Platform Integration Architect (Mule-Arch-202) is now Stable and With Pass Result | Test Your Knowledge for Free

Exams4sure Dumps

MuleSoft-Integration-Architect-I Practice Questions

Salesforce Certified MuleSoft Platform Integration Architect (Mule-Arch-202)

Last Update 1 day ago
Total Questions : 273

Dive into our fully updated and stable MuleSoft-Integration-Architect-I practice test platform, featuring all the latest Salesforce MuleSoft exam questions added this week. Our preparation tool is more than just a Salesforce study aid; it's a strategic advantage.

Our free Salesforce MuleSoft practice questions crafted to reflect the domains and difficulty of the actual exam. The detailed rationales explain the 'why' behind each answer, reinforcing key concepts about MuleSoft-Integration-Architect-I. Use this test to pinpoint which areas you need to focus your study on.

MuleSoft-Integration-Architect-I PDF

MuleSoft-Integration-Architect-I PDF (Printable)
$43.75
$124.99

MuleSoft-Integration-Architect-I Testing Engine

MuleSoft-Integration-Architect-I PDF (Printable)
$50.75
$144.99

MuleSoft-Integration-Architect-I PDF + Testing Engine

MuleSoft-Integration-Architect-I PDF (Printable)
$63.7
$181.99
Question # 11

An organization has deployed runtime fabric on an eight note cluster with performance profile. An API uses and non persistent object store for maintaining some of its state data. What will be the impact to the stale data if server crashes?

Options:

A.  

State data is preserved

B.  

State data is rolled back to a previously saved version

C.  

State data is lost

D.  

State data is preserved as long as more than one more is unaffected by the crash

Discussion 0
Question # 12

Refer to the exhibit.

Anypoint Platform supports role-based access control (RBAC) to features of the platform. An organization has configured an external Identity Provider for identity management with Anypoint Platform.

What aspects of RBAC must ALWAYS be controlled from the Anypoint Platform control plane and CANNOT be controlled via the external Identity Provider?

Options:

A.  

Controlling the business group within Anypoint Platform to which the user belongs

B.  

Assigning Anypoint Platform permissions to a role

C.  

Assigning Anypoint Platform role(s) to a user

D.  

Removing a user's access to Anypoint Platform when they no longer work for the organization

Discussion 0
Question # 13

A Mule application name Pub uses a persistence object store. The Pub Mule application is deployed to Cloudhub and it configured to use Object Store v2.

Another Mule application name sub is being developed to retrieve values from the Pub Mule application persistence object Store and will also be deployed to cloudhub.

What is the most direct way for the Sub Mule application to retrieve values from the Pub Mule application persistence object store with the least latency?

Options:

A.  

Use an object store connector configured to access the Pub Mule application persistence object store

B.  

Use a VM connector configured to directly access the persistence queue of the Pub Mule application persistence object store.

C.  

Use an Anypoint MQ connector configured to directly access the Pub Mule application persistence object store

D.  

Use the Object store v2 REST API configured to access the Pub Mule application persistence object store.

Discussion 0
Question # 14

An organization if struggling frequent plugin version upgrades and external plugin project dependencies. The team wants to minimize the impact on applications by creating best practices that will define a set of default dependencies across all new and in progress projects.

How can these best practices be achieved with the applications having the least amount of responsibility?

Options:

A.  

Create a Mule plugin project with all the dependencies and add it as a dependency in each application's POM.xml file

B.  

Create a mule domain project with all the dependencies define in its POM.xml file and add each application to the domain Project

C.  

Add all dependencies in each application's POM.xml file

D.  

Create a parent POM of all the required dependencies and reference each in each application's POM.xml file

Discussion 0
Question # 15

A Mule application is being designed to do the following:

Step 1: Read a SalesOrder message from a JMS queue, where each SalesOrder consists of a header and a list of SalesOrderLineltems.

Step 2: Insert the SalesOrder header and each SalesOrderLineltem into different tables in an RDBMS.

Step 3: Insert the SalesOrder header and the sum of the prices of all its SalesOrderLineltems into a table In a different RDBMS.

No SalesOrder message can be lost and the consistency of all SalesOrder-related information in both RDBMSs must be ensured at all times.

What design choice (including choice of transactions) and order of steps addresses these requirements?

Options:

A.  

1) Read the JMS message (NOT in an XA transaction)2) Perform BOTH DB inserts in ONE DB transaction3) Acknowledge the JMS message

B.  

1) Read the JMS message (NOT in an XA transaction)2) Perform EACH DB insert in a SEPARATE DB transaction3) Acknowledge the JMS message

C.  

1) Read the JMS message in an XA transaction2) In the SAME XA transaction, perform BOTH DB inserts but do NOT acknowledge the JMS message

D.  

1) Read and acknowledge the JMS message (NOT in an XA transaction)2) In a NEW XA transaction, perform BOTH DB inserts

Discussion 0
Question # 16

Which type of communication is managed by a service mesh in a microservices architecture?

Options:

A.  

Communication between microservices runtime administrators

B.  

Communication between microservices developers

C.  

Communication between microservices

D.  

Communication between trading partner services

Discussion 0
Question # 17

An insurance company has an existing API which is currently used by customers. API is deployed to customer hosted Mule runtime cluster. The load balancer that is used to access any APIs on the mule cluster is only configured to point to applications hosted on the server at port 443.

Mule application team of a company attempted to deploy a second API using port 443 but the application will not start and checking logs shows an error indicating the address is already in use.

Which steps must the organization take to resolve this error and allow customers to access both the API's?

Options:

A.  

Change the base path of the HTTP listener configuration in the second API to a different one from the first API

B.  

Set HTTP listener configuration in both API's to allow for connections from multiple ports

C.  

Move the HTTP listener configurations from the API's and package them in a mule domain project using port 443

D.  

Set the HTTP listener of the second API to use different port than the one used in the first API

Discussion 0
Question # 18

An organization is creating a Mule application that will be deployed to CloudHub. The Mule application has a property named dbPassword that stores a database user’s password.

The organization's security standards indicate that the dbPassword property must be hidden from every Anypoint Platform user after the value is set in the Runtime Manager Properties tab.

What configuration in the Mule application helps hide the dbPassword property value in Runtime Manager?

Options:

A.  

Use secure::dbPassword as the property placeholder name and store the cleartext (unencrypted) value in a secure properties placeholder file

B.  

Use secure::dbPassword as the property placeholder name and store the property encrypted value in a secure properties placeholder file

C.  

Add the dbPassword property to the secureProperties section of the pom.xml file

D.  

Add the dbPassword property to the secureProperties section of the mule-artifact.json file

Discussion 0
Question # 19

A customer wants to use the mapped diagnostic context (MDC) and logging variables to enrich its logging and improve tracking by providing more context in the logs.

The customer also wants to improve the throughput and lower the latency of message processing.

As an Mulesoft integration architect can you advise, what should the customer implement to meet these requirements?

Options:

A.  

Use synchronous logging and use pattern layout with [%MDC] in the log4j2.xml configuration file and then configure the logging variables

B.  

Useasync logger at the level greater than INFO and use pattern layout with [%MDC] in the log4j2,xml configuration file and then configure the logging variables

C.  

Useasync logger at the level equal to DEBUG orTRACEand use patternlayout with [%MDC] in the log4j2.xml configuration file and then configure the logging variables

D.  

Use synchronous logging at the INFO DEBUG or Trace level and use pattern layout with [%MDC] in the log4j2.xml configuration file and then configure the logging variables

Discussion 0
Question # 20

As a part of business requirement , old CRM system needs to be integrated using Mule application. CRM system is capable of exchanging data only via SOAP/HTTP protocol. As an integration architect who follows API led approach , what is the the below step you will perform so that you can share document with CRM team?

Options:

A.  

Create RAML specification using Design Center

B.  

Create SOAP API specification using Design Center

C.  

Create WSDL specification using text editor

D.  

Create WSDL specification using Design Center

Discussion 0
Get MuleSoft-Integration-Architect-I dumps and pass your exam in 24 hours!

Free Exams Sample Questions