Module 1 Review Flashcards

1
Q

What are the objectives of Module 1?
(Slide 2)

A
  • Explain what application networks are and their benefits
  • Describe how to build application networks using API-led connectivity
  • Explain what web services and APIs are
  • Make calls to secure and unsecured APIs
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are application networks?
(Slide 50)

A

It’s a network of applications, data, and devices connected with APIs to make them pluggable and to create reusable services

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What are the benefits of application networks?
(Slide 24)

A
  • Emerges bottom-up via self service
  • Provides visibility, security and governability at every API node
  • It’s reasonable: It bends, not breaks - built for change
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Describe how to build application networks using API-led connectivity
(Slide 14, 15)

A
  • You need to organize APIs into 3 categories
  1. Systems API
  2. Process API
  3. Experience API
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is systems API?
(Slide 14, 15)

A
  1. It connects directly to core systems of record (databases, ERP systems)
  2. They handle the complexity of the underlying systems and expose their data in a reusable way
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is process APIs?
(Slide 14, 15)

A
  1. Orchestrate data and functionality from one or more system APIs to create specific business processes
  2. They handle business logic and processes, ensuring data is combined or transformed as needed
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is experience APIs?
(Slide 14, 15)

A
  1. Designed to serve specific user experience
  2. They interact directly with the user interface or client applications
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Explain what an API is
(Slide 26, 51)

A
  1. Application Programing Interface
  2. Provides information for how to communicate with a software component
  3. Defines:
    • Operations (what to call)
    • Inputs (what to send w/ a call)
    • Outputs (what you get back from a call)
    • Underlying data types
  4. Defines functionalities independent of implementation
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Explain what a web service is
(Slide 29)

A
  1. A method of communication that allows 2 software systems to exchange data over the internet
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What are the 2 main types of web services?
(Slide 31)

A
  1. SOAP web services
    • Traditional, more complex
    • The communication rules are defined in an XML-based WSDL file
  2. RESTful web services
    • Recent, simpler type
    • Use the existing HTTP communication protocol
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What are the different parts of a web service?
(Slide 30)

A
  1. The web service API
    - Describes how you interact with the web service
  • It may or may not (though it should!) be explicitly defined in a file
  • It could be any sort of text in any type of file but ideally should implement some standard API description language (or specification)
  1. The web service interface implementing the API
    - Is the code providing the structure to the application so it implements the API
  • This may be combined with the actual implementation code
  1. The web service implementation itself
    - Is the actual code and application
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

To call web services, you need to?
(Slide 40)

A
  1. Write code to make the HTTP request

Or

  1. Have a tool to make the HTTP request
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What needs to be specified to make API calls?
(Slide 40)

A
  1. HTTP method
  2. Request headers
  3. Request body
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What are the tools for testing API calls?

A
  1. An API portal with an API console
  2. Advanced Rest Client
  3. Postman
  4. A cURL command-line utility
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What are the types of APIs based on security features?
(Slide 41)

A
  1. Secure APIs:
    - Require authentication
  2. Unsecured APIs:
    - May be public and do not require authentication
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What’s the title of Module 1?
(Slide 1)

A

Introducing application networks and API-led connectivity

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

True or false, each project adds value to the application network?
(Slide 21)

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

What are some key characteristics or practices associated with secured APIs?
(Slide 41)

A
  • You may need to provide credentials or a token
  • Often a proxy is created to govern access to an API
  • We will call and then later créate an API secured by credentials
  • You can also secure an API with other authentication protocols
  • OAuth, SAML, JWT, and more
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

What do RESTful web services return in response to a call?
(Slide 42)

A

An HTTP status code with the response

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
20
Q

What does the HTTP status code provide to the client?
(Slide 42)

A

Feedback for the outcome of the operation (succeeded, failed, updated)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
21
Q

What should a good API return regarding HTTP status codes?
(Slide 42)

A

Status codes that align with the HTTP specification

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
22
Q

Which API layers correspond to Central IT, LoB IT, and Developers? Describe the actions associated with each role.
(Slide 16)

A
  1. Central IT: Systems APIs
    • Unlocking assets and decentralizing access
  2. LoB IT: Process APIs
    • Discover, reuse assets and compose information
  3. Developers: Experience APIs
    • Discover, self-service, reuse and consume
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
23
Q

What is C4E and what are the key points involved?
(Slide 18, 50)

A

It’s a cross-functional team that ensures assets are…

  1. Productized & published
  2. Consumable
  3. Consumed broadly
  4. Fully leveraged
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
24
Q

Success for C4E is measured on?
(Slide 18)

A

Asset consumption

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
25
Q

What are the key groups involved in the C4E?
(Slide 18)

A
  1. Innovation teams
  2. LoB IT
  3. Central IT
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
26
Q

What do people mean when they say API?
(Slide 27)

A
  1. An API interface definition file (API specification): Defines what you can call, what you send it, and what you get back.
  2. A web service: The actual API implementation you can make calls to or the interface of that API implementation.
  3. An API proxy: An application that restores access to a web service, restricting access and usage through the use of an API gateway.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
27
Q

In web services, what factors influence the data exchange between software systems?
(Slide 29)

A
  1. Bridging protocols: (HTTP, SOAP, REST)
  2. Platforms: (Windows, Linux)
  3. Programing languages: (Java, Python, C#)
  4. Hardware architecture
28
Q

What do you use to make calls to an unsecured API (an implementation)?
(Slide 44)

29
Q

Identify the biggest challenges faced by IT today
(Slide 4 & 5)

A
  1. IT can’t grow fast enough
  2. Digital pressures create a widening transformation delivery gap
30
Q

What does the transformation delivery gap mean and what’s needed?
(Slide 5, 6, 7, 8)

A
  • A growing disparity between the increasing demand for digital solutions and the capacity of IT teams to deliver those solutions within a required timeframe
  • New IT Operating Model
31
Q

What does the new IT Operating Model emphasize?
(Slide 9)

A

Consumption

32
Q

What is SAP and what does it stand for?
(Slide 10)

A
  1. It’s an enterprise resource planning system
  2. Systems, Applications & Products
33
Q

What is the definition of REST?
(Slide 33)

A

An architectural style where clients and servers exchange representations of resources using the standard HTTP protocol

34
Q

With regards to RESTful web services, what can clients do to avoid repeated network calls?
(Slide 33)

A

Clients can cache previous responses

35
Q

With regards to RESTful web services, what does it mean for a server to be stateless?
(Slide 33)

A

The server does not remember any client state from previous requests

36
Q

Is a RESTful web service stateless?
(Slide 33)

37
Q

In RESTful web services calls, data and resources are represented using what?
(Slide 34)

38
Q

In RESTful web services, resources are accessed or changed using what?
(Slide 34)

A

A fixed set of operations

39
Q

In a RESTful web service call, what are the fixed set of operations that access or change resources?
(Slide 34)

A
  1. C: Create
  2. R: Read
  3. U: Update
  4. D: Delete
40
Q

In RESTful web service calls, describe what (GET)/companies means.
(Slide 34, 35)

A

This call retrieves a list of all companies in the system

41
Q

Define each RESTful web service request method
(Slide 35)

A
  1. GET: Retrieves the current state of a resource in some representation (usually JSON or XML)
  2. POST: Creates a new resource
  3. DELETE: Deletes a resource
  4. PUT: Replaces a resource completely

5: PATCH: Partially updated a resource

42
Q

What are the examples of representations used in the GET request method in a RESTful web service?
(Slide 35)

43
Q

What are the characteristics of JSON?
(Slide 36)

A
  1. A lightweight data-interchange format
  2. Human-readable results
  3. Supports collections and maps
44
Q

What should API documentation include?
(Slide 37)

A

The list of all possible resources, how to get access to the API, and more

45
Q

What is an API portal?
(Slide 37)

A

It accelerates onboarding by providing developers a centralized place for discovering all the tools they need to successfully use the API

46
Q

What tools do developers have access to in an API portal to successfully use the API?
(Slide 37)

A
  1. Documentation, tutorials, code snippets, and examples
  2. A way to register applications to get access to the API
  3. A way to provide feedback and make requests
  4. A way to test the API by making calls to it
47
Q

What are some ways you can learn about APIs?
(Slide)

A
  1. API Documentation
  2. API Portals
  3. API Directories
48
Q

What are the 3 activities outlined in ‘Walkthrough 1 - 1: Explore an API directory and an API portal’?
(Slide 38)

A
  1. Browse the APIs.guru API directory
  2. Explore the API reference for an API (Vimeo)
  3. Explore the API portal for an API to be used in the course
49
Q

What does the (GET)/companies?country=France call do in a RESTful web service?
(Slide 34, 35)

A

This call retrieves a list of companies in France

50
Q

Explain the purpose of the
(GET)/companies/3 call in RESTful web services.
(Slide 34, 35)

A

This call retrieves detailed information about the company with the ID of 3

51
Q

What action is performed by the
(POST)/companies call with JSON/XML in the HTTP body in a RESTful web service?
(Slide 34, 35)

A

This call creates a new company resource using the data in the JSON or XML body

52
Q

What does the (DELETE)/companies/3 call accomplish in a RESTful web service?
(Slide 34, 35)

A

It deletes the company resource with the ID of 3 from the system

53
Q

In RESTful web service calls, describe what the (PUT)/companies/3 with JSON/XML in the HTTP body means.
(Slide 34, 35)

A

This call completely replaces the company resource with ID 3 using the data in the request body

54
Q

What are some common HTTP status codes, and what do they mean?
(Slide 43)

A
  1. 200: OK - The request succeeded
  2. 201: Created - A new resource or object in a collection
  3. 304: Not modified - Nothing was modified by request
  4. 400: Bad request- The request could not be performed by the server due to bad syntax
  5. 401: Unauthorized - Authorization credentials are required, or user does not have access to the resource
  6. 404: Resource not found - The URI is not recognized by the server
  7. 500: Server error - Generic something went wrong on the server side
55
Q

What do you use to make calls to a secured API (an API proxy)?
(Slide 44)

56
Q

What do you use to make calls to an API proxy endpoint?
(Slide 44)

A

API console

57
Q

What are some examples of API calls?
(Slide 44)

A

GET, DELETE, POST, PUT

58
Q

What do you need to create to drive API-led connectivity?
(Slide 50)

59
Q

What activities are covered in ‘Walkthrough 1 - 2: Make calls to an API?
(Slide 44)

A
  1. Use ARC to make calls to an unsecured API (an implementation)
  2. Make GET, DELETE, POST, and PUT calls
  3. Use ARC to make calls to a secured API (an API proxy)
  4. Use the API console in an API portal to make calls to a managed API using a mocking service
  5. Use the API console to make calls to an API proxy endpoint
60
Q

What happens to the attributes of a Mule event in a flow after an outbound HTTP request is made?
(Knowledge Quiz 1)

A

Attributes are replaced with new attributes from the HTTP request response (which might be null)

61
Q

What is a Mule event?
(Knowledge Quiz 1)

A

It’s a message object that flows through a Mule application, consisting of 2 main parts: the payload & the attributes

62
Q

In the context of Mule events, what are attributes?
(Knowledge Quiz 1)

A

They are additional details about the message, like headers or query parameters, that provide context for processing the main data (payload)

63
Q

In the context of Mule events, what are payloads?
(Knowledge Quiz 1)

A

They are the main data or content being transmitted in the message

64
Q

What MuleSoft API-led connectivity layer is intended to expose part of a backend database without business logic?
(Knowledge Quiz 1)

A

Systems API

65
Q

What is one part of MuleSoft’s description of an application network?
(Knowledge Quiz 1)

A

It creates reusable APIs and assets designed to be consumed by other business units

66
Q

According to MuleSoft, what is the C4E’s role in the new IT operating model?
(Knowledge Quiz 1)

A

Creates and manages discoverable assets to be consumed by LoB developers

67
Q

What is a core characteristic of the modern API?
(Knowledge Quiz 1)

A

API is designed first using an API specification for rapid feedback