Level 1;Latest 2023
What Mulesoft API-led connectivity layer is intended to expose part of a backend
database without business logic?
System
What statement is part of Mulesoft's description of an application network?
Creates reusable APIs and assets designed to be consumed by other business units.
According to Mulesoft, what is the Center for Enablement's role in the new IT operating
model?
Creates and manages discoverable assets to be consumed by line of business
developers.
What is a core characteristic of the Modern API
API is designed first using an API specification for rapid feedback.
What HTTP Method in a RESTful web service is typically used to completly replace an
existing resource?
PUT
What is the main purpose of flow designer in Design Center?
To design and develop fully functional Mule applications in a hosted development
environment.
Where does a deployed flow designer application run in Anypoint Platform?
Cloudhub Worker
What Mulesoft product enables publishing, sharing and searching of APIs?
Anypoint Exchange
What asset can NOT be created using Design Center?
API Portals
A web client submits a GET request to a Mule 4 application to the enpoint /customers?
id=48493. Where is the id stored in the Mule event by the HTTP listener?
attributes
An API has been created in Design Center. What is the next step to make the API
discoverable?
Publish the API to Anypoint Exchange.
Refer to the exhibit. What is the correct URL to submit a GET request to/patients?
/patients:
get:
queryParameters:
year:
type: integer
example: 2017
http://dev.acme.com/api/patients?year=2016
A RAML example fragment named BankAccountsExample.raml is placed in the
examples folder in an API specification project. What is the correct syntax to reference
the fragment?
examples: !include examples/BankAccountsExample.raml
, Refer to the exhibit. There is an error in the flight_id resource's GET method. What
needs to be done to fix the problem?
/flights:
get:
/{flights_id}:
get:
Indent the get method under the {flight_id} resource.
Refer to the exhibit. This RAML specification includes an XML example that matches
the Records data type defined in another RAML file named recordsDataType.raml.
Using the Records type, how can this XML example be represented in RAML?
<music>
<collection>Deep Collection</collection>
<artists>
<artist1>Deep Purple</artist1>
<artist2>Rainbox</artist2>
</artists>
</music>
body:
application/xml:
type: Records
example:
music:
collection: "Deep Collection"
artists:
artist1: "Deep Purple"
artist2: "Rainbow"
What is the purpose of the api:router element in APIkit?
Validates requests against RAML api specifications and routes them to API
implementations
What is the minimum required configuration in a flow for a Mule application to compile?
An event processor
A database connector is configured to select rows from a MySQL database. What is the
format of the array of results returned from the database query?
Java
What is NOT part of Mule 4 event?
inboundproperties
How does APIkit determine the number of flows to generate from a RAML specification?
creates a seperate flow for each HTTP Method
What is the purpose of API autodiscovery?
Allows a deployed Mule application to connect with API Manager to download policies
and act as its own API proxy.
How many Mule applications can run on a CloudHub worked?
At most one
What does an API proxy not do?