<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Peakblick</title>
    <description>The latest articles on DEV Community by Peakblick (@peakblick).</description>
    <link>https://dev.to/peakblick</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4136277%2F88df5c76-2bff-4005-8bed-97466825e364.png</url>
      <title>DEV Community: Peakblick</title>
      <link>https://dev.to/peakblick</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/peakblick"/>
    <language>en</language>
    <item>
      <title>Why You Freeze in Technical Interviews (and the Drill That Fixes It)</title>
      <dc:creator>Peakblick</dc:creator>
      <pubDate>Mon, 21 Sep 2026 18:41:40 +0000</pubDate>
      <link>https://dev.to/peakblick/why-you-freeze-in-technical-interviews-and-the-drill-that-fixes-it-4kn3</link>
      <guid>https://dev.to/peakblick/why-you-freeze-in-technical-interviews-and-the-drill-that-fixes-it-4kn3</guid>
      <description>&lt;p&gt;If you go blank in interviews even though you know the material, the problem isn't knowledge — it's that you've never practiced &lt;em&gt;performing&lt;/em&gt; under a clock while talking. That's a separate skill, and it's fixable with reps.&lt;/p&gt;

&lt;p&gt;You've solved the problems. You've read the docs. Then the interviewer asks something you'd nail on your own machine, and your mind goes empty. This is one of the most common — and most misunderstood — reasons strong engineers fail interviews. The good news: the fix has nothing to do with studying more.&lt;/p&gt;

&lt;h2&gt;
  
  
  What freezing actually is
&lt;/h2&gt;

&lt;p&gt;Solving a problem alone and answering it out loud in front of a stranger, on a timer, are two different skills. When you code alone, your working memory is free to think. In an interview, a big chunk of that memory is spent on things that have nothing to do with the problem: watching the clock, worrying about how you sound, wondering what they're thinking. There's less capacity left for the actual answer — so you blank.&lt;/p&gt;

&lt;p&gt;That's why the freeze feels so unfair. You &lt;em&gt;do&lt;/em&gt; know it. You've just never trained your brain to retrieve it while under that specific load.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why more studying doesn't help
&lt;/h2&gt;

&lt;p&gt;Grinding more problems trains the wrong muscle. It makes you better at solving silently — which you're already good at. It does nothing for the thing that's actually failing: retrieving and explaining under pressure. You can double your problem count and still freeze, because you never rehearsed the conditions of the interview itself.&lt;/p&gt;

&lt;h2&gt;
  
  
  The 20-minute drill that fixes it
&lt;/h2&gt;

&lt;p&gt;Recreate the pressure, on purpose, until it stops being novel:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Talk the entire time.&lt;/strong&gt; Narrate your thinking out loud, even alone. It feels deeply unnatural at first — that discomfort is exactly the skill you're building.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Put a real clock on it.&lt;/strong&gt; 20–30 minutes, no pausing to look things up. The pressure is the point; that's the variable you're bad at, not the topic.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Record it or get it scored, then review.&lt;/strong&gt; Watch or read it back. You'll immediately hear the rambling, the skipped trade-offs, the "umm" spirals you can't feel in the moment.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Do this three or four times and the interview stops feeling like an ambush. The retrieval-under-pressure path is now worn in.&lt;/p&gt;

&lt;h2&gt;
  
  
  What to fix when you review
&lt;/h2&gt;

&lt;p&gt;From scoring hundreds of answers, the same handful of habits separate a "pass" from a "fail":&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Structure before detail.&lt;/strong&gt; Open with the shape of your answer — "there are basically three approaches; I'd go with X because…" — then fill in. Interviewers grade signal, and structure is signal.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Name the trade-off out loud.&lt;/strong&gt; "This is O(n) time but costs memory; if the input's bounded I'd do the other one." Saying the trade-off scores higher than a correct answer with no reasoning.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Admit the unknown.&lt;/strong&gt; "I haven't used that directly, but based on X I'd expect Y" beats a confident wrong answer every time. Bluffing is the fastest fail.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Answer the question that was asked.&lt;/strong&gt; Restate it in one line before you start — a huge share of low scores are just off-target.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Land the plane.&lt;/strong&gt; End with a one-sentence conclusion instead of trailing off. A clear close changes how the whole answer is remembered.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Good vs. weak answer, same question
&lt;/h2&gt;

&lt;p&gt;Question: &lt;em&gt;"What's a database index and when would you avoid one?"&lt;/em&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Weak:&lt;/strong&gt; "An index makes queries faster because it's like a lookup table and the database uses it to find rows quicker so reads are faster…" (correct-ish, but no structure, no trade-off, no close.)&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Strong:&lt;/strong&gt; "An index is a separate data structure that speeds up reads by avoiding a full scan — usually a B-tree. The trade-off is slower writes and extra storage, since every insert updates the index. So I'd avoid one on a small table, or a column that's written far more than it's read. Short version: index for read-heavy lookups, skip it when writes dominate." (Structure → trade-off → when-not → close.)&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Same knowledge. The second one just &lt;em&gt;performs&lt;/em&gt; it — which is the exact skill the drill builds.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;I built &lt;a href="https://peakblick.com/?utm_source=devto&amp;amp;utm_medium=blog&amp;amp;utm_campaign=article1" rel="noopener noreferrer"&gt;Peakblick&lt;/a&gt; to run this drill without a partner: it interviews you for a specific role, on a timer, and scores every answer 1–10 with feedback. Free to try.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>career</category>
      <category>interview</category>
      <category>productivity</category>
    </item>
  </channel>
</rss>
