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

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

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

Prepare Interview

Web Developer 면접 질문과 답변

Ques 31. What is the role of the 'DOCTYPE' declaration in HTML?

The 'DOCTYPE' declaration defines the document type and version of HTML or XHTML, ensuring proper rendering in web browsers.

Example:

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

Ques 32. Explain the concept of 'Promises' in JavaScript.

Promises are objects representing the eventual completion or failure of an asynchronous operation, allowing better handling of asynchronous code.

Example:

const fetchData = new Promise((resolve, reject) => {
  // asynchronous code
});

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

Ques 33. What is the 'CSS Box Model'?

The CSS Box Model is a design and layout concept that consists of content, padding, border, and margin, defining the space around and within an HTML element.

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

Ques 34. Explain the purpose of the 'data-*' attribute in HTML.

The 'data-*' attribute is used to store custom data private to the page or application, accessible by JavaScript and CSS.

Example:

User Profile

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

Ques 35. What is the purpose of the 'async' attribute in a script tag?

The 'async' attribute in a script tag allows the script to be downloaded asynchronously, without blocking the HTML parsing, and then executed.

Example:

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

Most helpful rated by users:

Copyright © 2026, WithoutBook.