AND CORRECT ANSWERS|GRADED A+
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
,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