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

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

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

Prepare Interview

Web Developer 면접 질문과 답변

Ques 26. Explain the 'same-origin policy' in the context of web security.

The 'same-origin policy' is a security measure that restricts web pages from making requests to a different domain than the one that served the web page.

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

Ques 27. What is the purpose of the 'cookie' in web development?

Cookies are small pieces of data stored on the client's machine, used to store user information and maintain state between HTTP requests.

Example:

document.cookie = 'username=John; expires=Thu, 18 Dec 2024 12:00:00 UTC; path=/';

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

Ques 28. What is the difference between 'localStorage' and 'sessionStorage'?

'localStorage' stores data with no expiration time, while 'sessionStorage' stores data for the duration of the page session.

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

Ques 29. How does the 'target' attribute work in HTML forms?

The 'target' attribute specifies where to open the linked document when submitting a form, such as '_blank' to open in a new tab.

Example:

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

Ques 30. Explain the concept of 'AJAX Long Polling' in web development.

AJAX Long Polling is a technique where the server holds an HTTP request open until new data is available, allowing real-time updates.

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

Most helpful rated by users:

Copyright © 2026, WithoutBook.