Which type of cache invalidation does the Cache scope support without having to write any additional code?
A. Write-through invalidation
B. White-behind invalidation
C. Time to live
D. Notification-based invalidation
Refer to the exhibit.
What action must be performed to log all the errors raised by the VM Connector?
A. Add
B. Add
C. Configure
D. Nothing, as error-level events are automatically logged
In a Mule project, Flow-1 contains a flow-ref to Flow-2 depends on data from Flow-1 to execute successfully. Which action ensures the test suites and test cases written for Flow-1 and Flow-2 will execute successfully?
A. Chain together the test suites and test cases for Flow-1 and Flow-2
B. Use "Set Event to pass the input that is needed, and keep the test cases for Flow-1 and Flow-2 independent
C. Use "Before Test Case'' To collect data from Flow-1 test cases before running Flow-2 test cases
D. Use "After Test Case' to produce the data needed from Flow-1 test cases to pass to Flow-2 test cases
Which plugin or dependency is required to unit test modules created with XML SDK?
A. XMLUnit
B. Junit
C. MUnit Extensions Maven plugin
D. MUnit Maven plugin
A company has been using CI/CD. Its developers use Maven to handle build and deployment activities. What is the correct sequence of activities that takes place during the Maven build and deployment?
A. Initialize, validate, compute, test, package, verify, install, deploy
B. Validate, initialize, compile, package, test, install, verify, verify, deploy
C. Validate, initialize, compile, test package, verify, install, deploy
D. Validation, initialize, compile, test, package, install verify, deploy
A Mule application deployed to multiple Cloudhub 2.0 replicas needs to temporarily persist large files over 10MB between flow executions, and routinely needs to query whether the file data exists on separate executions. How can this be achieved?
A. Store the contents of the file on separate storage, and store the key and location of the file Object using Object Store v2
B. Use an in-memory Object Store
C. Store the key and full contents of the file in an Object Store D. Store the key and full contents of the file, caching the filename and location between requests
A developer is working on a project that requires encrypting all data before sending it to a backend application. To accomplish this, the developer will use PGP encryption in the Mule 4 Cryptography module. What is required to encrypt the data before sending it to the backend application?
A. The application needs to configure HTTPS TLS context information to encrypt the data
B. The application needs to both the private and public keys to encrypt the data
C. The application needs the public key from the backend service to encrypt the data
D. The application needs the private key from the backend service to encrypt the data
A heathcare customer wants to use hospital system data, which includes code that was developed using legacy tools and methods. The customer has created reusable Java libraries in order to read the data from the system. What is the most effective way to develop an API retrieve the data from the hospital system?
A. Refer to JAR files in the code
B. Include the libraries writes deploying the code into the runtime
C. Create the Java code in your project and invoice the data from the code
D. Install libraries in a local repository and refer to it in the pm.xml file
An order processing system is composed of multiple Mule application responsible for warehouse, sales and shipping. Each application communication using Anypoint MQ. Each message must be correlated against the original order ID for observability and tracing. How should a developer propagate the order ID as the correlation ID across each message?
A. Use the underlying HTTP request of Anypoint MQ to set the "X-CORRELATION_ID' header to the order ID
B. Set a custom Anypoint MQ user property to propagate the order ID and set the correlation ID in the receiving applications.
C. Use the default correlation ID, Anypoint MQ will sutomatically propagate it.
D. Wrap all Anypoint MQ Publish operations within a With CorrelationID scope from the Tracing module, setting the correlation ID to the order ID
Refer to the exhibit.
A Mule application pom.xml configures the Maven Resources plugin to exclude parsing binary files in the project's src/main/resources/certs directory. Which configuration of this plugin achieves a successful build?
A. Option A
B. Option B
C. Option C
D. Option D