Question # 1 An API implementation is deployed on a single worker on CloudHub and invoked by external API clients (outside of CloudHub). How can an alert be set up that is guaranteed to trigger AS SOON AS that API implementation stops responding to API invocations?
A. Implement a heartbeat/health check within the API and invoke it from outside the Anypoint Platform and alert when the heartbeat does not respond
B. Configure a "worker not responding" alert in Anypoint Runtime Manager
C. Handle API invocation exceptions within the calling API client and raise an alert from that API client when the API Is unavailable
D. Create an alert for when the API receives no requests within a specified time period
Click for Answer
B. Configure a "worker not responding" alert in Anypoint Runtime Manager
Answer Description Explanation: Explanation Correct Answer: Configure a “Worker not responding” alert in Anypoint Runtime Manager. ***************************************** >> All the options eventually helps to generate the alert required when the application stops responding. >> However, handling exceptions within calling API and then raising alert from API client is inappropriate and silly. There could be many API clients invoking the API implementation and it is not ideal to have this setup consistently in all of them. Not a realistic way to do. >> Implementing a health check/ heartbeat with in the API and calling from outside to detmine the health sounds OK but needs extra setup for it and same time there are very good chances of generating false alarms when there are any intermittent network issues between external tool calling the health check API on API implementation. The API implementation itself may not have any issues but due to some other factors some false alarms may go out. >> Creating an alert in API Manager when the API receives no requests within a specified time period would actually generate realistic alerts but even here some false alarms may go out when there are genuinely no requests from API clients. The best and right way to achieve this requirement is to setup an alert on Runtime Manager with a condition "Worker not responding". This would generate an alert AS SOON AS the workers become unresponsive.
Question # 2 What best explains the use of auto-discovery in API implementations?
A. It makes API Manager aware of API implementations and hence enables it to enforce policies
B. It enables Anypoint Studio to discover API definitions configured in Anypoint Platform
C. It enables Anypoint Exchange to discover assets and makes them available for reuse
D. It enables Anypoint Analytics to gain insight into the usage of APIs
Click for Answer
A. It makes API Manager aware of API implementations and hence enables it to enforce policies
Answer Description Explanation: Explanation Correct Answer: It makes API Manager aware of API implementations and hence enables it to enforce policies. ***************************************** >> API Autodiscovery is a mechanism that manages an API from API Manager by pairing the deployed application to an API created on the platform. >> API Management includes tracking, enforcing policies if you apply any, and reporting API analytics. >> Critical to the Autodiscovery process is identifying the API by providing the API name and version. References: https://docs.mulesoft.com/api-manager/2.x/api-auto-discovery-new-concept https://docs.mulesoft.com/api-manager/1.x/api-auto-discovery https://docs.mulesoft.com/api-manager/2.x/api-auto-discovery-new-concept
Question # 3 What best describes the Fully Qualified Domain Names (FQDNs), also known as DNS entries, created when a Mule application is deployed to the CloudHub Shared Worker Cloud?
A. A fixed number of FQDNs are created, IRRESPECTIVE of the environment and VPC design
B. The FQDNs are determined by the application name chosen, IRRESPECTIVE of the region
C. The FQDNs are determined by the application name, but can be modified by an administrator after deployment
D. The FQDNs are determined by both the application name and the Anypoint Platform organization
Click for Answer
B. The FQDNs are determined by the application name chosen, IRRESPECTIVE of the region
Answer Description Explanation: Explanation Correct Answer: The FQDNs are determined by the application name chosen, IRRESPECTIVE of the region ***************************************** >> When deploying applications to Shared Worker Cloud, the FQDN are always determined by application name chosen. >> It does NOT matter what region the app is being deployed to. >> Although it is fact and true that the generated FQDN will have the region included in it (Ex: exp-salesorder-api.au-s1.cloudhub.io), it does NOT mean that the same name can be used when deploying to another CloudHub region. >> Application name should be universally unique irrespective of Region and Organization and solely determines the FQDN for Shared Load Balancers
Question # 4 What is true about API implementations when dealing with legal regulations that require all data processing to be performed within a certain jurisdiction (such as in the USA or the EU)?
A. They must avoid using the Object Store as it depends on services deployed ONLY to the US East region
B. They must use a Jurisdiction-local external messaging system such as Active MQ rather than Anypoint MQ
C. They must te deployed to Anypoint Platform runtime planes that are managed by Anypoint Platform control planes, with both planes in the same Jurisdiction
D. They must ensure ALL data is encrypted both in transit and at rest
Click for Answer
C. They must te deployed to Anypoint Platform runtime planes that are managed by Anypoint Platform control planes, with both planes in the same Jurisdiction
Answer Description Explanation: Explanation Correct Answer: They must be deployed to Anypoint Platform runtime planes that are managed by Anypoint Platform control planes, with both planes in the same Jurisdiction. ***************************************** >> As per legal regulations, all data processing to be performed within a certain jurisdiction. Meaning, the data in USA should reside within USA and should not go out. Same way, the data in EU should reside within EU and should not go out. >> So, just encrypting the data in transit and at rest does not help to be compliant with the rules. We need to make sure that data does not go out too. >> The data that we are talking here is not just about the messages that are published to Anypoint MQ. It includes the apps running, transaction states, application logs, events, metric info and any other metadata. So, just replacing Anypoint MQ with a locally hosted ActiveMQ does NOT help. >> The data that we are talking here is not just about the key/value pairs that are stored in Object Store. It includes the messages published, apps running, transaction states, application logs, events, metric info and any other metadata. So, just avoiding using Object Store does NOT help. >> The only option left and also the right option in the given choices is to deploy application on runtime and control planes that are both within the jurisdiction.
Question # 5 When must an API implementation be deployed to an Anypoint VPC?
A. When the API Implementation must invoke publicly exposed services that are deployed outside of CloudHub in a customer- managed AWS instance
B. When the API implementation must be accessible within a subnet of a restricted customer-hosted network that does not allow public access
C. When the API implementation must be deployed to a production AWS VPC using the Mule Maven plugin
D. When the API Implementation must write to a persistent Object Store
Click for Answer
A. When the API Implementation must invoke publicly exposed services that are deployed outside of CloudHub in a customer- managed AWS instance
Question # 6 Refer to the exhibit.
A. Option A
B. Option B
C. Option C
D. Option D
Click for Answer
Answer Description Explanation: Explanation Correct Answer: XML over HTTP ***************************************** >> API-led connectivity and Application Networks urge to have the APIs on HTTP based protocols for building most effective APIs and networks on top of them. >> The HTTP based APIs allow the platform to apply various varities of policies to address many NFRs >> The HTTP based APIs also allow to implement many standard and effective implementation patterns that adhere to HTTP based w3c rules
Question # 7 An organization has implemented a Customer Address API to retrieve customer address information. This API has been deployed to multiple environments and has been configured to enforce client IDs everywhere. A developer is writing a client application to allow a user to update their address. The developer has found the Customer Address API in Anypoint Exchange and wants to use it in their client application. What step of gaining access to the API can be performed automatically by Anypoint Platform?
A. Approve the client application request for the chosen SLA tier
B. Request access to the appropriate API Instances deployed to multiple environments using the client application's credentials
C. Modify the client application to call the API using the client application's credentials
D. Create a new application in Anypoint Exchange for requesting access to the API
Click for Answer
A. Approve the client application request for the chosen SLA tier
Answer Description Explanation: Explanation Correct Answer: Approve the client application request for the chosen SLA tier ***************************************** >> Only approving the client application request for the chosen SLA tier can be automated >> Rest of the provided options are not valid Reference: https://docs.mulesoft.com/api-manager/2.x/defining-sla-tiers#defining-a-tier
Question # 8 What Mule application deployment scenario requires using Anypoint Platform Private Cloud Edition or Anypoint Platform for Pivotal Cloud Foundry?
A. When it Is required to make ALL applications highly available across multiple data centers
B. When it is required that ALL APIs are private and NOT exposed to the public cloud
C. When regulatory requirements mandate on-premises processing of EVERY data item, including meta-data
D. When ALL backend systems in the application network are deployed in the organization's intranet
Click for Answer
C. When regulatory requirements mandate on-premises processing of EVERY data item, including meta-data
Answer Description Explanation: Explanation Correct Answer: When regulatory requirements mandate on-premises processing of EVERY data item, including meta-data. ***************************************** We need NOT require to use Anypoint Platform PCE or PCF for the below. So these options are OUT. >> We can make ALL applications highly available across multiple data centers using CloudHub too. >> We can use Anypoint VPN and tunneling from CloudHub to connect to ALL backend systems in the application network that are deployed in the organization's intranet. >> We can use Anypoint VPC and Firewall Rules to make ALL APIs private and NOT exposed to the public cloud. Only valid reason in the given options that requires to use Anypoint Platform PCE/ PCF is - When regulatory requirements mandate on-premises processing of EVERY data item, including meta-data
Up-to-Date
We always provide up-to-date MCPA-Level-1 exam dumps to our clients. Keep checking website for updates and download.
Excellence
Quality and excellence of our MuleSoft Certified Platform Architect - Level 1 practice questions are above customers expectations. Contact live chat to know more.
Success
Your SUCCESS is assured with the MCPA-Level-1 exam questions of passin1day.com. Just Buy, Prepare and PASS!
Quality
All our braindumps are verified with their correct answers. Download MuleSoft Certified Platform Architect 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 MCPA-Level-1 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.
MCPA-Level-1 Dumps
We have recently updated MuleSoft MCPA-Level-1 dumps study guide. You can use our MuleSoft Certified Platform Architect braindumps and pass your exam in just 24 hours. Our MuleSoft Certified Platform Architect - Level 1 real exam contains latest questions. We are providing MuleSoft MCPA-Level-1 dumps with updates for 3 months. You can purchase in advance and start studying. Whenever MuleSoft update MuleSoft Certified Platform Architect - Level 1 exam, we also update our file with new questions. Passin1day is here to provide real MCPA-Level-1 exam questions to people who find it difficult to pass exam
MuleSoft Certified Platform Architect 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 MCPA-Level-1 dumps. MuleSoft Certifications demonstrate your competence and make your discerning employers recognize that MuleSoft Certified Platform Architect - Level 1 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 Platform Architect exam in just a single try. Passin1day is offering MCPA-Level-1 braindumps which are accurate and of high-quality verified by the IT professionals. Candidates can instantly download MuleSoft Certified Platform Architect dumps and access them at any device after purchase. Online MuleSoft Certified Platform Architect - Level 1 practice tests are planned and designed to prepare you completely for the real MuleSoft exam condition. Free MCPA-Level-1 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 MCPA-Level-1 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 Platform Architect - Level 1 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.