Implementing Automation for Cisco Enterprise Solutions (ENAUTO) — Question 86
What are two characteristics of REST API calls? (Choose two.)
Answer options
- A. unencrypted
- B. non-cacheable
- C. stateless
- D. implemented over HTTP
- E. parameters passed in the headers
Correct answer: C, D
Explanation
The correct answers are C and D because REST APIs are designed to be stateless, meaning each request from a client contains all the information needed to process the request. Additionally, REST APIs are typically implemented over HTTP, which is a fundamental aspect of their operation. Options A, B, and E are incorrect as they do not accurately describe the essential characteristics of REST APIs.