"Tell Me About Your Project": The Interview Round Freshers Waste
The project discussion is the friendliest part of a technical interview and the one most freshers fumble. Here is what the interviewer is testing, how to structure the answer, and what to do when you did not really build the thing on your resume.
There is a moment in almost every fresher interview where the interviewer looks at the resume, picks the project at the top, and says: tell me about this.
It is the most forgiving question in the entire process. You choose the ground, you know more about this subject than they do, and nothing is being sprung on you. And it is the question I see students handle worst — worse than dynamic programming, worse than the behavioural round — because they have practised solving problems and never once practised describing their own work.
The typical answer runs like this: a list of technologies, a sentence about what the application does, and then a pause and a hopeful look. The interviewer, who has heard forty versions of this, asks a follow-up, and the follow-up reveals that the student cannot explain why they chose anything.
That is a fixable failure, and fixing it is cheaper than almost any other interview preparation you can do.
What the interviewer is actually testing
They are not checking whether your project was impressive. Fresher projects are rarely impressive and everyone knows it. They are checking four things, in roughly this order.
Did you build it? They can tell within about ninety seconds. The signal is not enthusiasm; it is whether you know things about the project that are not on the resume — what broke, what you tried first, what you would not do again.
Do you understand your own decisions? Why this database, why this framework, why this structure. "It was what the tutorial used" is an acceptable answer if you say it honestly and can then reason about what you would use now. It is a bad answer if you dress it up as a design decision.
Can you explain something technical to another person? This is a job requirement, not an interview trick. Engineers spend a large fraction of their time explaining work to people who were not in their head.
How do you think when something goes wrong? The debugging story is often the most informative sixty seconds of an entire interview.
Notice that three of the four are about your thinking rather than the artefact. That is why a small project explained precisely beats a large one described vaguely, more or less every time.
The structure that works
Have a two-minute version ready and rehearsed out loud — not memorised word for word, but structured enough that you never wander. Five parts, in order.
The problem, in one sentence. What did this exist to do, and for whom? Start here rather than with the stack. "It is a React and Node application" tells the interviewer nothing; "students in my hostel kept losing track of shared expenses, so I built something to split and track them" gives them a frame for everything that follows.
What it does, briefly. Two or three sentences of the actual behaviour, from a user's point of view.
How it is built, at a level someone can follow. The shape of it: what the client does, what the server does, where data lives, what talks to what. Name the technologies here, in service of the description rather than as a list.
One real decision. Pick a choice you made and explain the alternative you rejected. This single element separates the top answers from the average ones, because it is the part that cannot be recited from a resume.
One real problem you hit. What broke, how you found it, what fixed it. Interviewers love this and students skip it, because they think problems make them look incompetent. The opposite is true: a project with no problems reads as a project you did not build.
Then stop talking. The follow-up questions are where the actual evaluation happens, and a candidate who talks for six uninterrupted minutes has removed the interviewer's ability to steer.
The questions that always follow
Whatever you describe, a predictable set of follow-ups comes next. Prepare answers for all of them and the round stops being able to surprise you.
| Question | What they are checking |
|---|---|
| Why did you choose X over Y? | Whether decisions were made or inherited |
| What would you do differently now? | Self-assessment and growth since building it |
| What happens if a thousand users hit this? | Whether you can reason beyond your own laptop |
| Where is the data stored, and how? | Basic data modelling |
| How did you test it? | Engineering habits |
| What was the hardest bug? | Debugging process |
| Which part did you write yourself? | Honesty, on team projects |
| How would you add feature Z? | Whether you understand your own architecture |
The scaling question deserves a note because it panics freshers. Nobody expects you to have built for a thousand users. They want to hear you think: what would break first, where the bottleneck probably is, what you would measure before changing anything. Saying "I would guess the database queries become the limit, because there is no indexing on that table and every page load runs it" is a strong answer from a student. Saying "I would add caching and load balancers" without knowing why is a weak one.
Which project should you lead with?
If you have several, the choice matters, and students almost always pick wrongly — they lead with the largest one, or the most recent one, when the right criterion is which one you can be interrogated about for fifteen minutes without running out of substance.
Rank your projects on three things: how much of it you actually wrote, how well you remember the decisions, and whether it connects to what this company does. The third is the tiebreaker, not the first filter. A modest inventory tool explained precisely will do more for you at a company that builds internal systems than an ambitious machine-learning project you followed along with and cannot defend.
Also prepare a second choice deliberately, because interviewers frequently ask about a different item on the list once they have finished with the first. A resume where the top project is strong and the second collapses under two questions produces a worse impression than one that lists only the strong project. Consistency across what you claim is itself a signal.
One thing worth doing that almost nobody does: prepare a thirty-second version as well as the two-minute one. Some interviewers ask about a project as a warm-up and want to move on quickly, and a candidate who launches into a full architectural walkthrough when the room wanted a summary has misread the question. Read the length of the question and match it.
What if I did not really build the project on my resume?
This is common, and the honest answer is that you have two options and only one of them survives an interview.
The first option is to take it off the resume. If it was a followed tutorial, a course capstone you contributed little to, or a team project where you wrote the documentation, listing it as your own is a liability. It occupies the interviewer's attention, invites questions you cannot answer, and when it collapses it takes your credibility with it for the rest of the round.
The second option, which is better, is to state your part accurately and keep it. "This was a four-person project; I built the authentication and the notification flow, and I was not involved in the frontend" is a perfectly good line and interviewers respect it. Then be genuinely strong on your part. Nobody expects a fresher to have built everything alone, and a clear account of a contribution reads better than a vague claim of ownership.
What does not work is bluffing, and the reason is arithmetic: the interviewer has built more software than you have, and follow-up questions get more specific until something gives. Getting caught costs the offer more reliably than having a thin project would have.
If your resume currently has three items you could not defend for five minutes, that is a resume problem before it is an interview problem. Rebuilding a fresher resume for callbacks covers what belongs on it, and if the real answer is that you have not built anything you would want to be asked about yet, the final-year project that actually helps your placement is the place to start.
How much does the AI question matter now?
More every year, and the way you handle it matters more than what you used.
Interviewers in 2026 assume you used AI tools somewhere in your project, because nearly everyone does. What they are trying to establish is whether you understand the code that resulted. So the failure mode is not "I used an assistant" — it is being unable to explain a function that lives in your own repository.
The clean approach is to be straightforward. Say what you used it for, say what you wrote and reasoned through yourself, and be ready to walk through any part of the code on request. Then make sure that is true before the interview by actually reading your own project again the night before. It is astonishing how often a student cannot explain something they shipped four months ago, and thirty minutes of re-reading prevents the whole problem. Our piece on using AI coding tools without hollowing out your skills deals with the longer-term version of this.
Practise it out loud, with a person
The last thing, and the one almost nobody does: say the two-minute version aloud to another human being before you say it to an interviewer.
Written preparation does not transfer. The gap between knowing your project and being able to narrate it under mild pressure is only closed by rehearsal, and it closes fast — two or three practice runs with a friend who asks follow-up questions is usually enough to change the quality of the answer entirely. Ask them to interrupt you. Ask them to say when they stopped following.
If speaking under pressure is the harder part for you, spoken English and interview confidence addresses the delivery side directly. And once the technical rounds are behind you, remember that the last conversation is not a formality either — the HR round is where a surprising number of offers are still lost.
The project round is a gift. You are the world's leading expert on the thing being discussed. Prepare like it.
Have projects but freeze when asked about them? Talk to a Career Call counsellor. We will run a mock project round, ask the follow-ups a real interviewer would, and rebuild your two-minute answer with you.