Technical Interviews

For tech, engineering, quant and increasingly consulting.

7 min read·0/5 sections done
After this lesson you'll be able to
  • Talk through your thinking, not just your answer
  • Handle the 'I don't know' gracefully
  • Prepare for coding, case and quant flavours
Section 1

What technical interviews test

Interviewers are usually testing your reasoning, not just your recall. They want to see how you break down a problem, how you handle being stuck, and whether you can be coached in real time.

When you’re happy with this section, tick it off.
Section 2

Think aloud, deliberately

Silent thinking is invisible thinking. Say what you're checking, what assumptions you're making, and why you're choosing an approach — even if it's just to rule it out.

Weak

"Silent for 90 seconds, then blurts an answer with no working."

Better

"'Let me start by clarifying: is the array sorted? OK, assumed sorted. Two approaches — brute force O(n²) or two pointers O(n). I'll take two pointers because n could be large…'"

Why this works — The interviewer can now help you if you drift. Silence gives them nothing to work with.

When you’re happy with this section, tick it off.
Section 3

When you don't know

The worst answer is a confident wrong one. The best is: 'I don't remember exactly — here's how I'd derive it / look it up / test it.' You're being watched for judgement, not omniscience.

Recruiter insight

I'd rather hire the candidate who says 'I don't know, let me reason from first principles' than the one who bluffs.

When you’re happy with this section, tick it off.
Section 4

The three flavours

  • Coding — LeetCode-style problems. Practise pattern recognition, not memorisation.
  • Case — consulting-style structured problems. Frameworks help but don't force fit.
  • Quant — probability, mental maths, brainteasers. Trading firms love these.
When you’re happy with this section, tick it off.
Section 5

Prep checklist

Checklist · saved as you tick
0/4
When you’re happy with this section, tick it off.
In one line

Reasoning visible, humility genuine, patterns rehearsed. Don't bluff.

Common questions