Elman Huseynov
Tech Interviews

What Interviewers Actually Write on the Scorecard

5 min read

Related service: Mock interviews

Episode 11. The notes decide, not the hour

An interview scorecard runs about 200 words, typed within an hour of the round.

It holds a verdict, a signal rating, and an evidence box quoting you.

The evidence box is where candidates are made and lost. Your job in the hour is to give the interviewer a quotable sentence.

You will never attend the debrief where it gets read.

I have written hundreds of those 200-word blocks and read hundreds more in debriefs.

Candidates prepare for the conversation and never for the write-up. The write-up is what travels.

What an interview scorecard looks like

Four or 5 signals for a coding round, each with an evidence box.

The form ends with a verdict: strong hire, hire, no hire or strong no hire.

SignalWhat the interviewer is asking themselves
Problem comprehensionDid they understand it before starting?
Solution designDid they choose an approach and say why?
ImplementationDoes the code do what they said it does?
VerificationDid they test it, or wait for me to find the bug?
CommunicationCould I follow their thinking without asking?

An interviewer who cannot fill the evidence box writes something vague. Vague notes lose in a debrief.

The five signals on an interview scorecard: problem comprehension, solution design, implementation, verification and communication
The 5 signals on a coding scorecard

Interview scorecard examples, line by line

Real shapes of sentences from real write-ups, details changed.

Good, and specific

  • “Asked about input size before choosing an approach. Ruled out sorting because n was up to 10^7.”
  • “Found their own off-by-one by tracing the example, before I said anything.”
  • “Named the tradeoff explicitly: more memory for 1 pass instead of 2.”
  • “When I pushed back on the schema, they changed it and named the cost.”

Bad, and equally specific

  • “Started coding at minute 3. I still do not know what problem they thought they were solving.”
  • “Silent for roughly 4 minutes. I could not tell if they were stuck or thinking.”
  • “Said the complexity was O(n log n). It was O(n^2). Did not catch it when walking an example.”
  • “Answered a different question than the one I asked, twice.”

The worst kind, and the most common

  • “Seemed fine. Solved it. Nothing stood out.”

In a debrief, “nothing stood out” reads as no hire. The room has to choose, and this candidate gave nobody anything to argue with.

Examples of what interviewers write on the scorecard: specific positive lines, specific negative lines, and the vague line that reads as a rejection
What interviewers write on the scorecard

Why vague notes sink you

The interviewer with specific evidence speaks with confidence. The one with impressions hedges.

If nobody has specific positive evidence about you, the decision drifts toward no. No is the safer default.

The debrief is 4 interviewers, 1 candidate, 40 minutes.

“They caught their own bug at minute 22, here is the line.” That beats “I mean, they were okay” every time.

In a debrief, an interviewer with specific evidence speaks with confidence while one with impressions hedges, and the decision drifts toward no
Why vague notes sink you

How to shape what interviewers write

Five habits, all about making thinking visible enough to record.

Say the constraint out loud before you use it

“n is up to a million, so anything quadratic is out.” Now that sentence exists in the notes.

Name the tradeoff

“I will use a hash map. That is O(n) extra memory, spent to avoid a second pass.”

One sentence, and it shows judgement rather than recall.

Test before you are asked

Walk 1 real example through your code, out loud, index by index. If you find a bug, say so and fix it.

“Found their own bug” is one of the strongest lines a write-up can contain.

Answer the question that was asked

If you need to go elsewhere first, say so. “Let me check 1 thing, then answer.” Otherwise it reads as evasion.

Close the loop

“With another 20 minutes I would handle the concurrent case, which would corrupt the counter.”

That is a sentence about your standards, and it gets written down.

Five habits that give an interviewer something quotable: say the constraint out loud, name the tradeoff, test before being asked, answer the question asked, and close the loop
5 habits that give them something to write

The behavioural scorecard

It scores against the company’s written values. It has a line for what you did.

“We decided to cut scope” produces no evidence about you.

“I proposed cutting the reporting module, and I was wrong about the follow-up cost.” That produces plenty.

Give every story a number. “Deploys from 4 a week to over 10” survives a debrief. “Improved our deployment process” does not.

From the hiring side

Teams should write the scorecard before the job ad.

If a company cannot tell you what it is scoring, it does not know either. Notice that during the loop.

Common questions

Can you ask to see the scorecard after an interview?

Ask, and expect a summary rather than the document. Most companies will not release the raw notes. Some will walk you through the signals if you ask the recruiter directly. A company that cannot tell you what it scored you on did not know beforehand.

Does the interviewer write the notes during or after the interview?

Both, and the during part matters to you. Most interviewers type fragments while you talk and turn them into prose within the hour. Anything you say that is quotable gets captured in the moment. Anything that needed reconstructing from memory arrives softer and vaguer in the write-up.

Is it bad if the interviewer types while you are talking?

Typing is the best sign available. Silence and no typing means nothing is landing. If you say something and hear keys, that sentence made it into the record. Some candidates find it rude. Typing is the mechanism that decides the outcome. Give them more to type.

What does strong hire actually mean?

Strong hire means the interviewer will argue for you in the room, with evidence. Hire means they will not object. The gap between those two is about how much specific material you gave them. That is why nothing stood out lands as a rejection.

What is an interview scorecard?

An interview scorecard is the form each interviewer fills in after a round. It lists the signals being tested and asks for evidence against each one. The debrief reads the scorecards, not the interviews. This is why what got written down matters more than how the hour felt.

The short version

The write-up decides, not the hour.

Say your constraints and tradeoffs out loud so they land in the notes. Test your own code before you are asked.

Give 1 number per story. Give the interviewer 1 sentence to quote in a room you will never be in.

A mock interview ends with your own filled-in scorecard within 24 hours. The same one a real panel would write.