00:00

QUESTION 26

- (Exam Topic 2)
What is a benefit of test-driven development?

Correct Answer: D

QUESTION 27

- (Exam Topic 1)
What is the benefit of edge computing?

Correct Answer: A
Reference: https://blogs.cisco.com/networking/time-to-get-serious-about-edge-computing

QUESTION 28

- (Exam Topic 3)
How are operations on REST APIs performed as compared to RPC APIs?

Correct Answer: D
In a REST API, operations are performed on resources, which are accessed and manipulated using HTTP verbs such as GET, POST, PUT, and DELETE. These resources are identified by a URL and are defined within the API. For example, an API may define a resource called "customers", which can be accessed using the URL "http://api.example.com/customers". To retrieve a list of customers, the client could make a GET request to this URL. To create a new customer, the client could make a POST request to the same URL with the necessary data in the request body. In contrast, in an RPC API, operations are performed by making function calls. The client makes a request to the server, specifying the function to be called and any necessary parameters. The server then executes the function and returns the result to the client. RPC APIs are operation-oriented, meaning that the focus is on the function being called rather than the resource being accessed.

QUESTION 29

- (Exam Topic 2)
Refer to the exhibit.
200-901 dumps exhibit
The output of the diff-u README.md-repo README.md command is shown. The original file was 165 lines long How many lines are in the edited copy of the file?

Correct Answer: C

QUESTION 30

- (Exam Topic 3)
An engineer needs to retrieve a list of locally available Firepower Threat Defense upgrade packages by using the Firepower Management Center REST API. The engineer uses a GET request with the URL:
/api/fmc_platform/v1/updates/upgradepackages/f413afeb-e6f6-75f4-9169-6d9bd49s625e
What does “f413afeb-e6f6-75f4-9169-6d9bd49s625e” represent?

Correct Answer: B
"GET upgradepackages Request Type: GET
Description: Retrieves a list of locally available Firepower Threat Defense upgrade packages, including major upgrades, maintenances release upgrades, and hotfixes.
URL: /api/fmc_platform/v1/updates/upgradepackages
URL for GET by ID: /api/fmc_platform/v1/updates/upgradepackages/{package_UUID}" Source:
https://www.cisco.com/c/en/us/td/docs/security/firepower/640/api/REST/Firepower_Management_Center_RES