가장 많이 묻는 면접 질문과 답변 & 온라인 테스트
면접 준비, 온라인 테스트, 튜토리얼, 라이브 연습을 위한 학습 플랫폼

집중 학습 경로, 모의고사, 면접 준비 콘텐츠로 실력을 키우세요.

WithoutBook은 주제별 면접 질문, 온라인 연습 테스트, 튜토리얼, 비교 가이드를 하나의 반응형 학습 공간으로 제공합니다.

Prepare Interview

REST API 면접 질문과 답변

관련 차이점

GraphQL vs RESTful Web Services (REST API)RESTful Web Services (REST API) vs gRPC

Ques 11. How big of a payload can you send using POST methods?

There isn't, theoretically, a cap on the size of the payload that can be transmitted via POST methods. Larger payloads, however, may require more bandwidth. As a result, processing the request by the server can take longer.

도움이 되었나요? Add Comment View Comments
 

Ques 12. Which protocols are used by REST APIs?

REST APIs employ the HTTP protocol for client communication, whereas other protocols are used elsewhere.

도움이 되었나요? Add Comment View Comments
 

Ques 13. What markup language are used to describe the resources in REST APIs?

Extensible Markup Language (XML) and JSON are used to represent the resources in REST APIs or JavaScript Object Notation.

도움이 되었나요? Add Comment View Comments
 

Ques 14. Distinguish between POST and PUT techniques.

POST Approach:

  • On the server, a resource can be created with POST.
  • POST lacks idempotence which means non-idempotent.
  • Responses from POST are cacheable.

PUT Approach:

  • A resource at a certain URI can be changed to another resource using the PUT command.
  • PUT is idempotent, meaning that no matter how many times it is called, only one resource will be produced.
  • Responses from PUT are not.

도움이 되었나요? Add Comment View Comments
 

Ques 15. What does the REST API's caching do?

In order to quickly obtain a server answer in the future, REST API maintains a copy of the response in a specific region of computer memory. Catching is the term for this brief technique.

도움이 되었나요? Add Comment View Comments
 

Most helpful rated by users:

Copyright © 2026, WithoutBook.