2656 questions across 53 topics

DevOps interview questions, worked through.

Read a real interview question, write your answer, then reveal the worked solution. Free, open, and one keystroke away.

Mid·Linux·Google

Detect a memory leak by watching RSS
AnswerSort processes by resident memory, watch the node process's RSS climb over time, then kill it.
Solutionps -eo pid,rss,comm --sort=-rss | head → re-sample to confirm RSS keeps growing (a leak, not a spike) → kill <pid>

Browse by Difficulty

115 questions carry a difficulty rating and a company tag, sourced from one repository. The rest are best browsed by topic.

Question

Loading…