▸ INTERVIEW SKILLS · the other side of the table

The interviewer's mind.

What is the interviewer actually writing down while you're talking? What signals do they calibrate on, where do they lose interest, and what happens in the debrief? Seeing the loop from the other side changes how you show up.

Before you walk in — what they know

THEIR PRE-GAME

Most interviewers spend 5–10 minutes reviewing your resume right before the call. They're looking for three things:

What this means for you: The first question is rarely random. It's usually the most interesting thing on your resume — or a probe into something that looked vague. Know your resume cold and be ready for depth on anything you wrote.

The first five minutes

CALIBRATION HAPPENS FAST

Interviewers calibrate within the first five minutes — often the first two. This is not because they're shallow. It's because experienced interviewers have interviewed hundreds of people and pattern-match quickly. What they're reading:

Interviewer's internal monologue · opening pitch
"Can this person tell me who they are in under 2 minutes?"
If the pitch is tight and specific, I'm thinking: this person knows their story. I'm already curious which thread to pull. I'm in a good mood for the rest of the interview.

If the pitch is rambling, I'm thinking: communication may be an issue. I'm now grading harder on the technical sections to compensate. I'm also running low on time and will rush later questions.
What they write in notes
Good opener — clear arc, specific scope, knows why they're here. OR: Pitch rambled, hard to extract role/scope. Will probe technical depth more carefully.

During the technical round

WHAT THEY'RE GRADING ON

The question on the screen is not the test. It's the vehicle. What they're actually measuring:

Interviewer's internal monologue · SQL / coding question
"Write a query to find the top 3 products per customer by revenue in the last 30 days."
I don't care if they use ROW_NUMBER or RANK. I care whether they:
1. Clarified before writing — "does 'top 3' mean exactly 3 or up to 3, and what about ties?"
2. Thought out loud — I can't grade what I can't hear
3. Caught their own edge cases — NULLs, ties, customers with fewer than 3 products
4. Knew the tradeoffs — when I ask "how does this perform at 10B rows?", can they answer?
What they write in notes
Clarified ties question unprompted ✓. Used DENSE_RANK, explained why. Identified NULL customer case without prompting ✓. Performance answer was shallow — mentioned index but couldn't reason about partition pruning. Mid L5.
Interviewer's internal monologue · system design question
"Design a pipeline to ingest 10M events/day from 50 IoT devices into a queryable analytics store."
Strong candidates ask about requirements first. I'm listening for:
Latency needs: real-time or batch? What SLA?
Query patterns: analytical (Redshift, BigQuery) or operational (Cassandra, DynamoDB)?
Reliability requirements: exactly-once or at-least-once acceptable?

Weak candidates jump straight to "Kafka → Spark → S3 → Snowflake." That might be right, but I have no idea if they know why.
What they write in notes
Asked 4 scoping questions before proposing architecture. Identified that IoT events may arrive out-of-order — proposed watermark strategy. Couldn't compare Iceberg vs Delta tradeoffs — gap. Strong L5, borderline L6.

What makes them stop taking positive notes

· · ·

During the behavioral round

THE HIDDEN RUBRIC

Behavioral interviewers are not listening to your story. They're listening for signals inside your story.

Interviewer's internal monologue · behavioral question
"Tell me about a time you disagreed with a technical decision."
I'm looking for four things:

1. Real disagreement, not managed harmony. "I raised my concerns and we aligned" is not a disagreement story — it's a non-answer.

2. How they influenced. Did they use data? Did they build allies? Did they write a doc? Or did they just "voice concerns in the meeting"?

3. Whether they were right. I want to know the outcome. Was their position vindicated? Did they update their view?

4. Tone. Are they still bitter? Do they blame the decision-maker? That's a flag.
What they write in notes
Named a specific technical decision (Spark vs Flink for streaming). Wrote a 2-pager with latency benchmarks. Was overruled. Outcome: team later reverted — candidate updated gracefully without "I told you so" energy. Influence via data ✓. Ego not in the room ✓. Strong signal.
What they askWhat they're really checking
"Tell me about a project you're most proud of."Do they lead with impact or process? Can they articulate why it mattered to the business?
"Tell me about a time you failed."Do they own it or deflect? Do they describe what changed after?
"Describe a conflict with a stakeholder."Emotional maturity. Do they listen? Do they stay technical when personal?
"How do you decide what to work on?"Prioritization framework. Do they know what "impact" means or just "what's on the backlog"?
"Tell me about a time you influenced without authority."L6+ signal — can they move people who don't report to them?
"What would your manager say is your biggest weakness?"Self-awareness. "I work too hard" is disqualifying. Name a real one and show what you did about it.

The debrief — how decisions actually get made

AFTER YOU LEAVE

Most candidates imagine the debrief as a calm discussion. It's usually not. It's often 45 minutes with 4–6 interviewers, each with different observations, under time pressure. Here's how your fate is determined:

  1. Scorecards are submitted before the debrief. At most companies (Google, Meta, Amazon) each interviewer submits their score independently — Strong Hire, Hire, No Hire, Strong No Hire — before anyone else shares their view. This prevents anchoring.
  2. Outliers get airtime. If five people say Hire and one says Strong No Hire, that person's concerns get the most discussion time. You need unanimous or near-unanimous to pass.
  3. One veto can kill a Strong Hire. At most senior-level loops, a strong no from any interviewer — especially on culture fit, integrity, or a major technical gap — can close the loop. Strong Hires from others don't cancel it out.
  4. The hiring manager has the final call but needs to defend an override to the committee. Overrides are possible but rare at staff+.
What this means for you: Don't write off any round. The behavioral round matters as much as the SQL round. The 30-minute call with the junior engineer matters as much as the debrief with the hiring manager. Anyone can be the veto.

Level calibration signals

HOW THEY DECIDE L5 VS L6

Interviewers are calibrating level in parallel with the hire/no-hire decision. The same answer can read very differently at different levels.

SignalL5 (Senior)L6 (Staff)
Scope of examplesTeam impact, cross-team collaborationOrg-level impact, cross-functional initiative ownership
System designDesigns the right solution for the problemAnticipates the problems adjacent to the stated problem
Disagreement storiesInfluenced the decision with dataChanged the direction of the team; had to bring leadership along
Failure storiesPersonal project that missed; learned and reboundedInitiative they led that failed; postmortem they drove; org change that resulted
Hiring / mentoringHas opinions about good candidatesHas built hiring pipelines; made bar-raiser decisions; changed how the team grows
AmbiguityAsks clarifying questions before proceedingNames the ambiguity explicitly and proposes a framework for deciding

When you ask questions at the end

YOUR LAST 5 MINUTES

Most candidates treat this as a formality. Most interviewers are still taking notes. The questions you ask reveal:

Interviewer's internal monologue · your questions
"What's the biggest technical challenge the team is working on right now?"
This is a good question. I want to answer it. It signals they're thinking about the work, not the offer. A great candidate follows up with something like: "That's actually similar to a problem I ran into at [previous role] — we tried X, which helped, but Y was still hard." That's a candidate who's already thinking like a teammate.

Incident scenarios  ·  Red Flags →