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

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

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

Prepare Interview

Web Developer 면접 질문과 답변

Ques 41. Explain the difference between 'localStorage' and 'sessionStorage'.

'localStorage' persists even when the browser is closed and reopened, while 'sessionStorage' data is only available for the duration of the page session.

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

Ques 42. What is the purpose of the 'SQL Injection' attack and how can it be prevented?

SQL Injection is an attack where malicious SQL statements are inserted into user inputs, leading to unauthorized access or data manipulation. Prevention involves using parameterized queries and input validation.

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

Ques 43. Explain the concept of 'Cross-Origin Embedder Policy' (COEP) in web security.

COEP is a security policy that controls whether a document can be embedded in another document across different origins, enhancing security by preventing unauthorized embedding.

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

Ques 44. What is the 'DRY' principle in software development?

DRY (Don't Repeat Yourself) is a software development principle advocating for reducing redundancy by reusing code and avoiding duplication.

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

Ques 45. Explain the purpose of the 'transform' property in CSS.

The 'transform' property is used to apply 2D or 3D transformations to elements, such as scaling, rotating, and translating.

Example:

div {
  transform: rotate(45deg);
}

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

Most helpful rated by users:

Copyright © 2026, WithoutBook.