Assessment design
When AI Is Allowed in the Coding Round, Judgment Is the Test
In a coding interview where AI is allowed, finishing is no longer the bar. Almost everyone in the room can produce a working answer, so the interviewer watches what you do with it: what you questioned before generating, what you tested against a case you picked yourself, and what you refused to ship without checking. State the constraint you're solving before you prompt, run the output against something the interviewer did not hand you, and say out loud when you don't trust a line.
The takeTreat the invitation to use AI as information about the round, not a gift. Advice that coaches speed for an AI-open interview is optimizing for the one thing that just stopped being scarce. The candidates who read poorly in these rounds are usually the ones who pasted a generated answer and could not say why one line existed; the ones who read well are the ones who caught the assistant being confidently wrong about something.
Where Olive fits
Open a role and see what the work shows
Olive's coding-round equivalent is a role-grounded assignment done openly with an AI assistant: a person writes the report on what you framed, tested, and rejected, never a score, and you receive the same report the employer reads.
Rank your shortlistWhat Changes When AI Is Allowed?
Nothing about the problem gets easier; what gets scored moves. In a pooled study across three companies and 4,867 developers, those with an AI coding assistant completed 26.08% more tasks on average, a noisy estimate with a standard error of 10.3 points, and the biggest gains went to less experienced developers 4. With that lift available to everyone in the room, finishing stops being the differentiator, so the round has to measure something upstream of the finished answer.
The risk moves with the tool rather than disappearing. In one field experiment, consultants using GPT-4 on tasks within the tool's strong suit finished tasks 25.1% more quickly and produced work rated more than 40% higher in quality 1. On a separate task chosen to sit outside that strength, though, consultants using AI were on average 19 percentage points less likely to reach the correct answer than a control group 2. The consultants given a prompt-engineering overview beforehand did worse on that task than the ones given no coaching at all, so more fluency with the tool was not protection 2. That is the failure mode an AI-open interview is built to catch.
A few things follow from that shift:
- Producing a solution is closer to table stakes than it used to be
- The graded axis moves to what you tested, refused, and kept for yourself
- A flawless-looking answer with no visible checking is not automatically a strong one
The two findings sit together on purpose. AI is genuinely good at the parts of a task it was trained on and genuinely bad at spotting when a task has quietly moved outside that range, and neither the assistant nor a nervous candidate reliably notices the shift while it is happening. An interviewer who has read the research is not looking for you to avoid the assistant. They are looking for you to behave like someone who knows the tool has a blind spot and is checking for it, which is a different skill from writing correct code unaided.
Don't Optimize for Speed
Speed is the wrong thing to chase, and self-reported speed is worse than useless. In a randomized trial, experienced developers using AI tools on code they already knew well finished 19% slower, despite forecasting a 24% speedup beforehand and still believing afterward that they had gained about 20% 3. If developers who were tracking the clock got their own speed wrong both before and after the fact, an interviewer timing you silently is not the test worth preparing for.
What replaces speed as a target is legible reasoning: stating the constraint you are solving for before you prompt, so the interviewer can see the shape of your thinking instead of reverse-engineering it from a finished function. Employers running these rounds well are told to score four things instead of a stopwatch: what got tested against something outside the chat, what got refused and on what grounds, what you kept for yourself, and what changed in the final call.
What Reads Well, and What Doesn't
A few concrete moves read as judgment rather than luck. Testing the generated function against a case you chose yourself, one the interviewer did not hand you, is one of the clearest signals available in the room. Saying out loud that you don't trust a line and then checking it is another. Both are visible acts an interviewer can point back to, which a silent, correct-looking paste cannot offer.
What reads badly is different from what you might expect: pasting an answer without reading it first, being unable to explain a specific line when asked, and treating a generated solution as finished the moment it runs without an error. None of these are about how much AI you used. A candidate who leaned on the assistant heavily and can explain every choice reads better than one who used it once and cannot explain the result.
For a longer answer on demonstrating this without narrating every keystroke, showing that you catch AI's mistakes is worth reading before the interview.
One habit sits between the two categories and deserves its own mention: asking the assistant a clarifying question before you accept its first answer. Interviewers who have run enough of these rounds can tell the difference between a candidate who treats the first output as a draft and one who treats it as a verdict, and that difference shows up well before anyone has tested anything.
How to Prepare Without Gaming the Round
Prepare the habit, not a script. Pick a problem you already know cold, generate a solution with an assistant, and force yourself to find one thing wrong with it before you accept it. Do this two or three times and skepticism gets easier to perform live, because it is genuinely there rather than rehearsed for the interviewer's benefit.
A short list worth rehearsing out loud, not just thinking through silently:
- Name the constraint before you prompt, in one sentence
- Pick your own test case, not the one already in the prompt
- State what you would check next if you had another five minutes
None of this requires memorizing a framework. It requires practicing the moment where you stop and check something, until doing that on camera feels like your own habit instead of a performance.
If you only have time for one rehearsal, make it this: solve a familiar problem with the assistant, then stop the moment it finishes and ask yourself what you would need to see before you would trust the answer with your own name on it. Whatever you find yourself checking is very likely the same thing an interviewer is quietly watching for.
Common questions
Does allowing AI mean the interview is easier?
The problem is not easier; the bar just moves. Producing a working answer stops being the differentiator once almost everyone in the room can get an assistant to produce one, so the interview shifts to how you framed the problem, what you tested, and what you refused to ship without checking.
Will I be penalized for using AI a lot during the round?
Not for the amount. What gets scored is whether you can explain and defend the choices in the output, not how many prompts it took to get there. A candidate who used the assistant constantly and can walk through every decision reads better than one who barely touched it and cannot.
Should I still practice writing code without any AI at all?
It helps, but not because the interview is secretly testing unaided speed. Practicing without the tool builds the underlying knowledge that lets you catch a wrong answer quickly when the assistant produces one, which is closer to what the round is actually checking.
What if the assistant gives me a wrong answer and I don't catch it in time?
Say so the moment you notice, even after the fact: naming what you missed and how you would catch it next time is itself a form of the judgment being scored. Interviewers generally read an honest catch, even a late one, better than a confident answer that was never checked.
Is this the same thing a take-home with AI allowed is testing?
Largely yes. Both formats have moved from scoring the finished output to scoring the visible reasoning around it: what got framed, tested, and rejected before the final version shipped.
References
- 1. Navigating the Jagged Technological Frontier: Field Experimental Evidence of the Effects of Artificial Intelligence on Knowledge Worker Productivity and Quality (Working Paper 24-013) mitsloan.mit.edu Supports that AI raises speed and quality substantially on tasks inside its capability, which is the baseline the round is measuring past.
- 2. Navigating the Jagged Technological Frontier: Field Experimental Evidence of the Effects of Artificial Intelligence on Knowledge Worker Productivity and Quality (Working Paper 24-013) mitsloan.mit.edu Supports that a confident wrong answer, not a slow one, is the real risk of unexamined AI use on a task outside its capability.
- 3. Measuring the Impact of Early-2025 AI on Experienced Open-Source Developer Productivity (arXiv:2507.09089) arxiv.org Supports that self-reported speedups from AI use are unreliable, so speed is a poor thing for a candidate to chase or an interviewer to time.
- 4. The Effects of Generative AI on High-Skilled Work: Evidence from Three Field Experiments with Software Developers economics.mit.edu Supports that AI assistance raises completed-task volume broadly, which is why finishing alone has stopped being the differentiator in an AI-open round.
4 sources, numbered by first appearance. How Olive sources claims
General guidance for hiring teams. What works at one company and one volume may not transfer to yours.
Olive assesses how a person works with AI. It does not detect AI-written documents, and it never produces a score, a ranking, or a match percentage for a person. Candidates read the same report the employer reads.