How do you handle workplace stress?
What are your long-term career goals ? Explain how do you think you’ll achieve your goals.
Tell me about a group project that you’ve worked on lately and what did you learn from it (technical and soft skills).
How do you prioritize tasks with overlapping deadlines ?
How do you stay updated technically ?
What is the difference between <div> and <section> in HTML5?
<div> is a generic container with no semantic meaning, used for styling or scripting. <section> is a semantic element that represents a thematic grouping of content, like chapters or tabs. Use <section> when the content has a clear theme or heading.Why is semantic HTML important for accessibility and SEO?
<header>, <nav>, <article>) improves accessibility by helping screen readers understand page structure. It also boosts SEO by making content more understandable to search engines, improving rankings.What is the difference between justify-content and align-items in Flexbox?
justify-content aligns flex items along the main axis (horizontally by default), while align-items aligns them along the cross axis (vertically by default).What is the purpose of the @media rule in CSS?
@media rule applies styles conditionally based on device characteristics (e.g., screen width).What is the difference between rem and em units?
em is relative to the font-size of its parent element, while rem is relative to the root (<html>) font-size. rem is more predictable for responsive design.What is ARIA and why is it important?
aria-label, aria-hidden). It helps screen readers interpret complex UI elements.