Rest-API Interview Questions – 2
Q. What are the best practices for designing RESTful APIs? Q.
Q. What are the best practices for designing RESTful APIs? Q.
Q. What is the REST API? Why is REST stateless? Q. What are the HTTP methods? Q. Difference between PUT VS PATCH?In HTTP, PUT replaces an entire resource, while PATCH updates specific fields within a resource, making PATCH a more efficient choice for partial updates. Here’s a more detailed explanation:…
What is a builder pattern?Create a complex object by separating the creation process from the representation. Builder pattern gives you the freedom to set property values in a chained manner, not required to set values for optional properties that are set automatically with their default values. Using method chaining (chained…