Самые популярные вопросы и ответы для интервью и онлайн-тесты
Образовательная платформа для подготовки к интервью, онлайн-тестов, учебных материалов и живой практики

Развивайте навыки с целевыми маршрутами обучения, пробными тестами и контентом для подготовки к интервью.

WithoutBook объединяет вопросы для интервью по предметам, онлайн-практику, учебные материалы и сравнительные руководства в одном удобном учебном пространстве.

Подготовка к интервью

Web Developer вопросы и ответы для интервью

Вопрос 16. Explain the concept of CORS (Cross-Origin Resource Sharing).

CORS is a security feature implemented by web browsers to restrict web pages from making requests to a different domain than the one that served the web page.

Это полезно? Добавить комментарий Посмотреть комментарии
 

Вопрос 17. What is the purpose of the 'async' and 'await' keywords in JavaScript?

The 'async' keyword is used to declare an asynchronous function, and 'await' is used to pause the execution of the function until the Promise is settled.

Example:

async function fetchData() {
  let response = await fetch('https://api.example.com/data');
  let data = await response.json();
  console.log(data);
}

Это полезно? Добавить комментарий Посмотреть комментарии
 

Вопрос 18. How does the 'localStorage' differ from 'sessionStorage' in HTML5?

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

Это полезно? Добавить комментарий Посмотреть комментарии
 

Вопрос 19. What is the difference between 'GET' and 'POST' HTTP methods?

'GET' is used to request data from a specified resource, while 'POST' is used to submit data to be processed to a specified resource.

Это полезно? Добавить комментарий Посмотреть комментарии
 

Вопрос 20. Explain the purpose of the 'box-sizing' property in CSS.

The 'box-sizing' property defines how the width and height of an element are calculated, including the padding and border, or excluding them.

Example:

div {
  box-sizing: border-box;
}

Это полезно? Добавить комментарий Посмотреть комментарии
 

Самое полезное по оценкам пользователей:

Авторские права © 2026, WithoutBook.