IntermediateSITUATIONAL
Suppose a simple landing page you built in HTML and CSS looks correct on your laptop, but the layout breaks on a mobile phone. Walk me through the specific steps you would take to diagnose and fix the issue using only your current HTML/CSS knowledge.
Other
General

Sample Answer

I’d start by reproducing the issue in a controlled way. I’d open Chrome DevTools, switch to device toolbar, and test a few common breakpoints like 375px and 414px, then physically check on my phone as well. Next, I’d inspect the broken elements and look for obvious culprits: fixed widths (like 1200px), large images without max-width, or missing viewport meta tag. If the viewport tag is missing, I’d add it first, which alone often fixes 50–60% of mobile issues. Then I’d replace fixed widths with percentages or max-width, and make images responsive with `max-width: 100%; height: auto;`. I’d add a simple mobile-first media query, like `@media (min-width: 768px)` for desktop adjustments. Finally, I’d re-test on 2–3 devices to confirm the layout scales cleanly across screen sizes.

Keywords

Use browser DevTools and device toolbar to reproduce the issueCheck for viewport meta tag and fixed-width elementsSwitch to fluid widths and responsive imagesApply simple mobile-first media queries and re-test on real devices
Related Questions

On your resume you mention working on a cross-functional project (e.g., involving multiple teams or stakeholders). Describe a situation from that project where priorities conflicted—how did you navigate the trade-offs and what was the final outcome?

IntermediateSITUATIONAL

Walk me through a recent multi-channel digital marketing campaign you managed end-to-end. How did you set objectives, choose channels, allocate budget, and measure success?

IntermediateBEHAVIORAL

In your resume you note improving or optimizing [a process, KPI, or metric]. What specific baseline metrics did you start from, what steps did you personally take, and how did you verify that the improvement was due to your changes rather than external factors?

IntermediatePROBLEM_SOLVING

Based on your hydrology and irrigation engineering background, explain how you would estimate the irrigation water requirement for a kharif crop in a semi-arid region of Gujarat. Walk me through each step: from reference evapotranspiration estimation, crop coefficient selection, effective rainfall calculation, to arriving at canal discharge for a given command area.

IntermediateTECHNICAL

In your civil engineering studies, what specific design coursework or project work did you complete related to irrigation channels or canals (e.g., design of lined/unlined canals, distributaries, minors)? Describe one such design in detail, including how you determined discharge, permissible velocity, section dimensions, and lining choice for Gujarat-type soil and climate conditions.

IntermediateTECHNICAL