Platform Architecture: Application Networks Exam 2023
with complete solution
What MuleSoft API-led connectivity layer is intended to expose part of a backend
database without business logic?
- experience
- data
- system
- process
- security
system
What HTTP method in a RESTful web service is typically used to replace a resource
completely?
- PATCH
- PUT
- POST
- GET
PUT
What statement is part of MuleSoft's description network?
- Create reusable APIs and assets designed to be consumed by other business units
- Create and manage high availability and fault tolerent services and infrastructure
- Central IT delivers complete point-to-point solutions with master data management
- Create and manage a collection of JMS messaging services and infrastructure
Create 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
- Centrally manages partners and consultants to implement line of business projects
- Implements line of business projects to enforce common security requirements
- Produces & manages API policies for line of business deployments
Creates and manages discoverable assets to be consumed by line of business
developers.
What is the format of documents exchanged in a SOAP request/response interaction?
- RAML
- JSON
,- WSDL
- YAML
WSDL
What is the main purpose of flow designer in Design Center?
- Design API RAML files in a graphical way
- Develop fully functional Mule applications in a hosted development environment
- Define API lifecycle management in a graphical way
- Design and mock Mule application templates that must be implemented using
Anypoint Studio
Develop fully functional Mule applications in a hosted development environment
What is the maximum number of Mule applications that can run in a Cloud Hub Worker?
-1
-2
-4
-8
1
What MuleSoft product enables publishing, sharing, and searching of APIs?
- API Designer
- API MUnit
- API Exchange
- API Notebook
API Exchange
What asset can NOT be created using Anypoint Platform Design Center?
- API Specifications
- Mule Applications
- API Fragments
- API Portals
API Portals
1. In Anypoint Platform, click API Manager, and in API Administration, click an API
version of an API.
2. On the API version details page, under API Portal, select Create new Portal from the
dropdown menu.
https://docs.mulesoft.com/api-manager/1.x/tutorial-create-an-api-portal
A client submits a GET request to a Mule 4.0 application to the endpoint /customers?
id=48493. Where can the id be accessed in the Mule 4.0 application?
- inbound properties
, - variables
- attributes
- payload
attributes
In a RAML specification, what attribute defines a query parameter to be optional for a
resource?
- required: false
- optional: true
- provided: false
- mandatory: false
required: false
Refer to the exhibit.
What is the correct URL to perform a GET request to /patients?
#%RAML 1.0
title: ACME Medical API
baseUri: http://dev.acme.com/api
/patients:
get:
queryParameters:
year:
type: integer
A. http://dev.acme.com/patients?year=2016
B. http://dev.acme.com/api/patients
C. http://dev.acme.com/patients
D. http://dev.acme.com/api/patients?year=2016
D. 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 for to reference the fragment?
- example: !include BankAccountsExample.raml
- example: #import BankAccountsExample.raml
- example: !include examples/BankAccountsExample.raml
- example: #import examples/BankAccountsExample.raml
!include examples/BankAccountsExample.raml
Refer to the exhibit.
There is an error underneath the flight_id resources in the GET method. What needs to
be done to fix the problem?
1 #%RAML 1.0
2 title: American Flights API