Question # 1 A Mule application defines as SSL/TLS keystore properly ‘tis,keystore.keyPassword’’ as secure. How can this property be referenced to access its value within the application?
A. #{secure::tiskeystore,keyPassowrd}
B. ${secure::tiskeystore,keyPassowrd}
C. ${secure::tiskeystore,keyPassowrd}
D. p{secure::tiskeystore,keyPassowrd}
Click for Answer
B. ${secure::tiskeystore,keyPassowrd}
Answer Description Explanation: secure::tiskeystore,keyPassowrdShortExplanationofCorrectAnswerOnly:Toreferenceasecurepropertyvaluewithintheapplication,In this case, the property name is tiskeystore,keyPassword, so the correct syntax is ${secure::tiskeystore,keyPassowrd}.
References : https://docs.mulesoft.com/mule-runtime/4.3/secure-configuration-properties#referencing-secure-properties
Question # 2 A healthcare portal needs to validate the token that it sends to a Mule API. The developer plans to implement a custom policy using the HTTP Policy Transform Extension to match the token received in the header from the heathcare portal. Which files does the developer need to create in order to package the custom policy?
A. Deployable ZIP file, YAML configuration file
B. JSON properties file, YAML configuration file
C. JSON properties file, XML template file
D. XML template file, YAML configuration file
Click for Answer
D. XML template file, YAML configuration file
Answer Description Explanation: To package a custom policy using the HTTP Policy Transform Extension, the developer needs to create an XML template file and a YAML configuration file. The XML template file defines the policy logic using Mule components and placeholders for user-defined properties. The YAML configuration file defines the metadata of the policy, such as its name, description, category, parameters, and dependencies.
References: https://docs.mulesoft.com/api-manager/2.x/http-policy-transform#packaging-the-policy
Question # 3 A Mule application deployed to a standardalone Mule runtime uses VM queues to publish messages to be consumed asynchronously by another flow. In the case of a system failure, what will happen to in-flight messages in the VM queues that have been consumed?
A. For nay type of queue, the message will be processed after the system comes online
B. For persistent queues, the message will be processed after the system comes online
C. For transient queues, the message will be processed after the system comes online
D. For any type of queue, the message will be lost
Click for Answer
B. For persistent queues, the message will be processed after the system comes online
Answer Description Explanation: In case of a system failure, in-flight messages in persistent VM queues that have been consumed will be processed after the system comes online. This is because persistent VM queues store messages on disk and guarantee delivery even if there is a system crash or restart. Therefore, any in-flight messages that have been consumed but not processed will be recovered from disk and processed when the system is back online.
References: https://docs.mulesoft.com/mule-runtime/4.3/vm-connector#persistent-queues
Question # 4 An order processing system is composed of multiple Mule application responsible for warehouse, sales and shipping. Each application communication usingAnypoint 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 orderIDB. Set a custom Anypoint MQ user propertyto 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
Click for Answer
D. Wrap all Anypoint MQ Publish operations within a With CorrelationID scope from the Tracing module, setting the correlation ID to the order ID
Question # 5 A custom policy needs to be developed to intercept all cutbound HTTP requests made by Mule applications. Which XML element must be used to intercept outbound HTTP requests?
A. It is not possible to intercept outgoing HTTP requests, only inbound requests
B. http-policy:source
C. htt-policy:operation
D. http-policy:processor
Click for Answer
Answer Description The http-policy:processor element is used to intercept outbound HTTP requests made by Mule applications. It allows customizing the request before it is sent to the target API and modifying the response after it is received from the target API.
References: https://docs.mulesoft.com/api-manager/2.x/policy-mule4-custom-policy#policy-xml-file
Question # 6 Which statement is true about using mutual TLS to secure an application?
A. Mutual TLS requires a hardware security module to be used
B. Mutual TLS authenticates the identity of the server before the identity of the client
C. Mutual TLS ensures only authorized end users are allowed to access an endpoint
D. Mutual TLS increases the encryption strength versus server-side TLS alone
Click for Answer
B. Mutual TLS authenticates the identity of the server before the identity of the client
Answer Description Explanation Mutual TLS (mTLS) is an extension of TLS that requires both parties (client and server) to present their certificates to each other during the handshake process. This way, both parties can verify each other’s identity and establish a secure connection. The authentication of the server happens before the authentication of the client, as the server sends its certificate first and then requests the client’s certificate.
References : https://docs.mulesoft.com/mule-runtime/4.3/tls-configuration#mutual-authentication
Question # 7 A new Mule project has been created in Anypoint Studio with the default settings. Which file inside the Mule project must be modified before using Maven to successfully deploy the application?
A. Settings.xml
B. Config.yaml
C. Pom.xml
D. Mule.artificact.json
Click for Answer
Answer Description Explanation To use Maven to successfully deploy the application, the developer needs to modify the pom.xml file inside the Mule project. The pom.xml file contains the configuration and dependencies of the Mule application, as well as the deployment information such as the CloudHub region, environment, and worker size. The developer needs to specify these properties in the pom.xml file before using Maven to deploy the application.
References: https://docs.mulesoft.com/mule-runtime/4.3/mmp-concept#application-deployment-descriptor
Question # 8 Which command is used to convert a JKS keystore to PKCS12?
A. Keytool-importkeystore –srckeystore keystore p12-srcstoretype PKCS12 –destkeystore keystore.jks–deststoretype JKS
B. Keytool-importkeystore –srckeystore keystore p12-srcstoretype JKS –destkeystore keystore.p12–deststoretype PKCS12
C. Keytool-importkeystore –srckeystore keystore jks-srcstoretype JKS –destkeystore keystore.p13–deststoretype PKCS12
D. Keytool-importkeystore –srckeystore keystore jks-srcstoretype PKCS12 –destkeystore keystore.p12–deststoretype JKS
Click for Answer
B. Keytool-importkeystore –srckeystore keystore p12-srcstoretype JKS –destkeystore keystore.p12–deststoretype PKCS12
Answer Description Explanation: To convert a JKS keystore to PKCS12, the developer needs to use the keytool-importkeystore command with the following options: -srckeystore keystore.jks -srcstoretype JKS -destkeystore keystore.p12 -deststoretype PKCS12. This command imports all entries from a source JKS keystore (keystore.jks) into a destination PKCS12 keystore (keystore.p12).
References: https://docs.oracle.com/en/java/javase/11/tools/keytool.html#GUID-5990A2E4-78E3-47B7-AE75-6D1826259549
Up-to-Date
We always provide up-to-date MCD-Level-2 exam dumps to our clients. Keep checking website for updates and download.
Excellence
Quality and excellence of our MuleSoft Certified Developer - Level 2 (Mule 4) practice questions are above customers expectations. Contact live chat to know more.
Success
Your SUCCESS is assured with the MCD-Level-2 exam questions of passin1day.com. Just Buy, Prepare and PASS!
Quality
All our braindumps are verified with their correct answers. Download MuleSoft Certified Developer Practice tests in a printable PDF format.
Basic
$80
Any 3 Exams of Your Choice
3 Exams PDF + Online Test Engine
Buy Now
Premium
$100
Any 4 Exams of Your Choice
4 Exams PDF + Online Test Engine
Buy Now
Gold
$125
Any 5 Exams of Your Choice
5 Exams PDF + Online Test Engine
Buy Now
Passin1Day has a big success story in last 12 years with a long list of satisfied customers.
We are UK based company, selling MCD-Level-2 practice test questions answers. We have a team of 34 people in Research, Writing, QA, Sales, Support and Marketing departments and helping people get success in their life.
We dont have a single unsatisfied MuleSoft customer in this time. Our customers are our asset and precious to us more than their money.
MCD-Level-2 Dumps
We have recently updated MuleSoft MCD-Level-2 dumps study guide. You can use our MuleSoft Certified Developer braindumps and pass your exam in just 24 hours. Our MuleSoft Certified Developer - Level 2 (Mule 4) real exam contains latest questions. We are providing MuleSoft MCD-Level-2 dumps with updates for 3 months. You can purchase in advance and start studying. Whenever MuleSoft update MuleSoft Certified Developer - Level 2 (Mule 4) exam, we also update our file with new questions. Passin1day is here to provide real MCD-Level-2 exam questions to people who find it difficult to pass exam
MuleSoft Certified Developer can advance your marketability and prove to be a key to differentiating you from those who have no certification and Passin1day is there to help you pass exam with MCD-Level-2 dumps. MuleSoft Certifications demonstrate your competence and make your discerning employers recognize that MuleSoft Certified Developer - Level 2 (Mule 4) certified employees are more valuable to their organizations and customers. We have helped thousands of customers so far in achieving their goals. Our excellent comprehensive MuleSoft exam dumps will enable you to pass your certification MuleSoft Certified Developer exam in just a single try. Passin1day is offering MCD-Level-2 braindumps which are accurate and of high-quality verified by the IT professionals. Candidates can instantly download MuleSoft Certified Developer dumps and access them at any device after purchase. Online MuleSoft Certified Developer - Level 2 (Mule 4) practice tests are planned and designed to prepare you completely for the real MuleSoft exam condition. Free MCD-Level-2 dumps demos can be available on customer’s demand to check before placing an order.
What Our Customers Say
Jeff Brown
Thanks you so much passin1day.com team for all the help that you have provided me in my MuleSoft exam. I will use your dumps for next certification as well.
Mareena Frederick
You guys are awesome. Even 1 day is too much. I prepared my exam in just 3 hours with your MCD-Level-2 exam dumps and passed it in first attempt :)
Ralph Donald
I am the fully satisfied customer of passin1day.com. I have passed my exam using your MuleSoft Certified Developer - Level 2 (Mule 4) braindumps in first attempt. You guys are the secret behind my success ;)
Lilly Solomon
I was so depressed when I get failed in my Cisco exam but thanks GOD you guys exist and helped me in passing my exams. I am nothing without you.