Skip to content

Latest commit

 

History

History
72 lines (60 loc) · 4.76 KB

web-developer-interview-questions.md

File metadata and controls

72 lines (60 loc) · 4.76 KB

Web Developer Common Interview Questions:

HTML / CSS / JavaScript / DevTool

Performance Questions:

  • DevTools in browsers such as Firefox and Chrome provides decent tools for your to debug and improve website performance.
  • Dynatrace

Network Questions:

  • Traditionally, why has it been better to serve site assets from multiple domains?
  • Do your best to describe the process from the time you type in a website's URL to it finishing loading on your screen.
  • What are the differences between Long-Polling, Websockets and Server-Sent Events?
  • Explain the following request and response headers:
    • Diff. between Expires, Date, Age and If-Modified-...
    • Do Not Track
    • Cache-Control
    • Transfer-Encoding
    • ETag
    • X-Frame-Options
  • What are HTTP methods? List all HTTP methods that you know, and explain them.

Testing Questions:

  • What are some advantages/disadvantages to testing your code?
  • What tools would you use to test your code's functionality?
  • What is the difference between a unit test and a functional/integration test?
  • What is the purpose of a code style linting tool?

Back to Home