In an AI-assisted coding interview, the AI is supplied by the employer or the assessment platform, its use is expected rather than tolerated, and the conversation you have with it is recorded and reviewed alongside your code. The evaluation shifts from "can you produce the solution unaided" to "can you direct a model, check what it returns, and take responsibility for the result." That is a different skill, it is legible in the transcript, and most candidates walk in having never practiced it.
This article covers interviews where AI use is explicitly permitted. If you are still trying to determine whether it is permitted at all, start with how to verify AI rules before a technical interview — availability of a tool is not permission to use it.
The format exists, and adoption is uneven
Google is piloting a software engineering interview in which candidates may use AI during a code comprehension round, analyzing an existing codebase to find bugs and improve performance. The pilot was reported on May 8, 2026 by Business Insider from an internal document, and covers select US-based teams hiring junior and mid-level engineers. Candidates use Google's Gemini assistant. Interviewers are directed to assess "AI fluency, including prompt engineering, output validation, and debugging skills." Brian Ong, Google's VP of Recruiting, said the company is "rolling out a pilot for software engineering interviews to be more reflective of how our teams are operating in the AI era" (Entrepreneur, May 2026).
Meta began testing AI-assisted coding interviews earlier. On July 30, 2025, a Meta spokesperson said the company was "testing how to provide these tools to applicants during interviews," and internal communications framed the change as "more representative of the developer environment that our future employees will work in," while also making "LLM-based cheating less effective" (TechRadar Pro, July 2025).
The opposite policy is equally live. Amazon's candidate guidance, reported March 14, 2025, reads: "To ensure a fair and transparent recruitment process, please do not use GenAI tools during your interview unless explicitly permitted," and warns that "failure to adhere to these guidelines may result in disqualification from the recruitment process" (IT Pro, March 2025). Anthropic similarly asks applicants not to use AI assistants during the application process while encouraging AI use in the job itself.
Two large employers moving in opposite directions at the same time is the actual state of the market as of August 2026. Permission is set per employer, often per stage, and sometimes per question within a single session. Nothing about the industry trend tells you what applies to your loop.
The interviewer is watching the prompts, not just the diff
The part candidates underestimate is visibility. In an AI-assisted interview, your conversation with the model is not scratch work that disappears — it is a reviewable artifact attached to your scorecard.
HackerRank's documentation for AI-Assisted Interviews states that "the AI Assistant panel remains fully visible to the interviewer, displaying both the candidate's prompts and the assistant's responses as they occur." Interviewers can also see which inline code completions you accepted, and, for frontend, backend, and full-stack projects, review a Diff View of what changed. After the session, the candidate report includes "a detailed Chat Transcript, which provides a complete record of the conversation between the candidate and the AI Assistant" (HackerRank, AI-Assisted Interviews).
The asynchronous equivalent behaves the same way. HackerRank's AI-Assisted Tests documentation describes an "AI Assistant Transcript" in the Detailed Report showing "the full conversation between the candidate and the AI assistant" (HackerRank, AI-Assisted Tests).
Assistance also comes in configured strengths rather than on or off. HackerRank documents a Guarded mode that "provides help with syntax, platform navigation, and conceptual guidance but does not generate complete solutions," and an Unguarded mode that "allows candidates to interact freely with the AI, similar to real-world AI coding tools." Unguarded sessions can expose Plan Mode for developing an approach before writing code, Ask Mode for questions about the problem, Agent Mode for multi-turn exchanges where the model edits code directly, and switching between models from several vendors. Guarded mode restricts agent behavior and inline completions; for plain coding questions, only Ask Mode is available in either mode.
Read that as a practical instruction: confirm at the start of the session which mode you are in, because it determines whether the assistant can write code for you or only talk to you about it.
The four things being scored
Google's published criteria — prompt engineering, output validation, debugging — map onto four observable behaviors. Each of them shows up in the transcript whether or not you attend to it.
Framing the problem before prompting
The first prompt is the most informative thing a reviewer sees. A first prompt that restates the problem statement verbatim signals that you started generating before you started thinking. A first prompt that names the constraint you care about, the shape of the input, and the tradeoff you are trying to make signals the opposite. Plan Mode exists because vendors expect the approach to precede the code; using it is a cheap way to make your reasoning visible.
Validating output rather than accepting it
Validation is the criterion most likely to separate candidates, because it is the one people skip under time pressure. Reviewers can see the gap between the model returning code and you running it. Stating a hypothesis before you execute — which edge case you expect to fail, what the complexity should be, which line you doubt — converts a silent acceptance into demonstrated judgment. Accepting a completion you never exercised, and having the diff show it, is the format's characteristic failure.
Debugging what the model got wrong
An AI-assisted round is usually designed so the model's first answer is insufficient. Code comprehension rounds in particular hand you existing code with defects in it, which is a poor fit for one-shot generation and a good fit for observing how someone narrows down a fault. The recovery is the assessment. Getting a wrong answer, localizing the error, and correcting it deliberately scores better than a clean solution you cannot account for.
Owning the code
Every source describing these formats returns to the same point: interviewers are checking whether you take ownership of all the code rather than relying on the model without demonstrating understanding. The practical test is whether you can explain any line the interviewer points at, including lines the model wrote. If you cannot, the transcript will show that you never read it.
A workable session pattern
- Confirm the ground rules out loud in the first minute — whether AI is enabled for this question, which mode, and whether the interviewer wants you to narrate your prompts.
- Restate the problem in your own words and name the constraint that matters before you type into the assistant.
- Use the assistant for the parts where speed genuinely helps — recalling an API, scaffolding a structure, enumerating cases — and keep the core decision yours.
- Say what you expect before you run anything, then run it.
- Read what the model returned, out loud if the interviewer is present. Reject what does not fit and say why.
- Keep the running commentary going. In a format where prompts are visible, silence reads as absence of thought rather than concentration.
Where this does not apply
Most technical hiring is still not AI-assisted, and the same platform vendor sells the opposite configuration. HackerRank's integrity reporting for proctored tests flags tab switching, copy-paste activity, typing cadence anomalies, multiple monitors, and external application use, with timestamped events and, when Proctor Mode is on, screenshots. Its own framing is that "integrity isn't about whether candidates use AI or not. It's about fairness, making sure everyone follows the same rules" (HackerRank). For the detail of what a proctored session captures, see what HackerRank proctoring detects and records.
The distinction that matters is configuration, not vendor. The same assessment platform can run an unguarded AI-assisted interview on Tuesday and a closed-book proctored test on Wednesday. Assuming the AI-assisted trend covers your assessment because it covers the industry is the error that gets candidates disqualified. If you are working across several of these platforms, the assessment platform guide covers how HackerRank, CodeSignal, and CoderPad differ in what they permit and record.
What remains uncertain
The Google details come from an internal document reported by a news outlet, not from published candidate-facing policy, and describe a pilot on selected teams rather than a company-wide standard. Pilots change or end. Vendor documentation describes what a platform can be configured to do, not what any particular employer has switched on — the specific modes, models, and reports available in your session depend on your employer's plan and settings. And no employer has published how these criteria are weighted against traditional signals, so "AI fluency counts" is currently a direction rather than a measurable rubric.
The preparation that follows
If a round is described as AI-assisted, AI-enabled, or open-tool, treat it as a distinct format with its own practice requirement rather than a normal interview with a safety net. The specific rehearsal worth doing: take a problem you already know how to solve, solve it with an assistant while narrating, and reread your own prompt transcript afterward as a reviewer would. Most people find their transcript reads worse than their code.
A mock interview with an explicit scoring rubric is the practical way to run that rehearsal repeatedly. Control is a desktop AI interview assistant used for practice and for screen-share and assessment workflows, with a free allowance of five messages and two minutes of voice transcription to test the workflow before you commit to it. In an interview where the employer supplies the assistant, use theirs — the transcript they are reading is the one that counts.
Share
Explore with AI
Continue exploring
Related guides
Interview Guidance · 8 min read
Are Technical Interviews Going Back to In-Person?
Google, Cisco, and McKinsey added in-person rounds to counter AI-assisted candidates. What the dated evidence shows, and how to prepare for a room.
Interview Guidance · 8 min read
Federal Hiring AI Rules: What Scans You, What You Can Use
OPM now urges agencies to use AI in hiring and is piloting AI-run interviews. What that means for federal applicants as of 8 September 2026.
Interview Guidance · 8 min read
Ghost Jobs in 2026: Is That Technical Req Real?
New York and Pennsylvania are moving to force hiring-timeline disclosure on job ads. Here is what the laws would change and how to bound your prep risk.