1
Mulesoft Certification Exam
One IT team developed an API in 2 months. Another IT team developed the same API what
could have prevented wasted 2 months' effort.
a. Center for Enablement
b. Center for Excellence
c. API MarketPlace
d. None of the above - answer-a
Given: 4 flows sharing the same host and with ports and request URIs described below. What is
the minimum number of configuration files for it to run successfully?
i. http://localhost:6000/resource1
ii. http://localhost:7000/resource2
iii. http://localhost:8000/resource3
iv. http://localhost:8000/resource4
a. 1
b. 2
c. 3
d. 4 - answer-c
Assuming that the RAML below will be generated in Anypoint Studio. How many private flows
will be generated?
___
#%RAML 1.0
title: muleexam
/Americanflight:
get:
post:
/{id}:
get:
post:
/Unitedflights:
put:
post:
___
a. 3
b. 6
c. 2
[Type here]
,1
1
d. 4 - answer-b
Which of the following correctly define uriParams in RAML:
a. ___
/Unitedflight:
put:
post:
/{id}:
get:
put:
/AmericanFlight:
get:
patch:
___
b. ___
/Unitedflight:
put:
post:
/{id}:
get:
put:
/AmericanFlight:
get:
patch:
___
c. ___
/Unitedflight:
put:
post:
/(id):
get:
put:
/AmericanFlight:
get:
patch:
___
d. All of the above - answer-b
[Type here]
, 1
1
A RAML data type fragment named FlightType.raml is placed in the dataTypes folder in an API
specification project. What is the correct syntax to reference to the fragments?
a. *type : !include dataTypes/FlightType.raml*
b. *type : #include dataTypes/FlightType.raml*
c. *types : !include dataTypes/FlightType.raml - global*
d. *datatype : !include dataTypes/FlightType.raml* - answer-a
What is the correct way to start a Modern API according to Mulesoft?
a. Design the specs to secure the API
b. Gather requirements and involve stake holders for feedback loop
c. API is rapidly prototyped following AGILE methodology
d. API follows the RESTful architecture - answer-b
What is the first step in designing a Mule application.
a. gather requirements, prototyping, spec driven.
b. collects hardware and software configuration and create API
c. Deploy and Test API.
d. none of the above - answer-a
Which of the following should be the Mulesoft recommendation to design the API URI for
accessing a unique resource in a web service?
a. */resource?action=GET&id=123*
b. */resource?id=123*
c. */resource/123*
d. */getResource/123* - answer-c
How to route to all HTTP Requests?
a. /
b. /*
c. /{*}
d. {} - answer-b
Which among the following is the correct way to add a uri parameter in the resource below?
___
Display Name: GET /resource
Basic Settings
Connector configuration: HTTP_Listener_config
[Type here]