Picture two product managers mid-conversation: “We’ve frozen the PRD, the MVP ships next sprint, UAT is clean, and GTM kicks off a phased rollout once we’re closer to PMF.” If that read like a foreign language, you’re in exactly the right place — because this is your product management 101, and the real question we’re going to answer is a simple one: what is product management, and how does a product actually get built?
Product management is loaded with buzzwords and frameworks that feel daunting from the outside — and honestly, even in your first few months on the inside. So instead of throwing definitions at you one by one, we’ll do something more useful: we’ll follow a single product all the way from a rough idea to a live launch, and define each term exactly where it shows up. By the end, that jargon-filled sentence above will read like plain English.
What is a product — and what is product management?
Let’s start at the very beginning. A product is any application or service that gives a user some value. Every app on your phone is a product — Amazon, Netflix, Uber, all products. But here’s the part beginners miss: it’s not just the whole app. Any feature within the app is a product too. Amazon’s product-listing page is a product. Browsing the catalogue on Netflix is a product. When you search on Google, the search itself is a product.
And, put very simply, the person who manages a product is a product manager — and that whole practice is product management. But “manage” is a vague word, isn’t it? So the honest answer to “what is product management” isn’t a one-line definition — it’s everything that happens between an idea and a living, breathing product that users actually use. What you’re really learning here is the software development lifecycle (SDLC), seen from the product manager’s seat. Let’s walk it.
It starts with a backlog and a roadmap
Everything begins with a backlog — an exhaustive laundry list of every product idea you have. These come from all over: your own ideas, user feedback, requests from internal teams like sales, marketing or finance, and yes, things you simply want to copy from a competitor. No shame in copying good ideas, right? The one thing to remember is that not everything in the backlog will get built. It’s a wish list, not a plan.
The plan is the roadmap — the items from the backlog you’ve decided to work on in the short term, say the next three or six months. You might have 50 things in the backlog and choose just 10 for this quarter’s roadmap. So how do you pick those 10? A handful of factors help you decide:
- Problem validation — is the problem actually worth solving?
- TAM (total addressable market) — how many users will this reach? If it touches only 0.1% of your base, maybe it waits.
- Impact estimation — what’s the end result? Revenue up 5%, churn down 10%, conversion up 2%?
- Important vs urgent — sometimes you need it now: social-media backlash over a missing feature, a feature needed to close a client, or a regulatory deadline.
- Complexity — a quick, easy build might earn a slot even without huge expected impact.
Once the roadmap is set, it usually gets a sign-off from all the stakeholders — Product, Design, Engineering, Sales, Marketing. (If you want to go deeper here, I’ve written a full guide on how to create a product roadmap without any fancy tools.) With the roadmap agreed, we start picking up individual items.
The PRD, wireframes, and UX vs UI
Each item on the roadmap gets a PRD — a Product Requirements Document. This is “the” most important document in product management: it lists all the features of a product in as much detail as possible, answering what are we building and how. It’s the single go-to reference for Product, Design and Tech. Writing one is iterative — you draft it, discuss with engineering and design, take their feedback, update, and go back and forth a couple of times before it’s final. (I’ve broken this down fully in how to write a PRD.)
Part of the PRD is wireframes — simplified visual sketches of how the user journey will look. Because the PRD is iterative, the designs have to be too, so the design team doesn’t sink hours into pixel-perfect screens that will only change. Depending on how settled the PRD is, wireframes can be low fidelity (rough) or high fidelity (finer, detailed, close to the final designs).
And while we’re on design, let’s clear up something that trips up almost every first-time PM: UX vs UI. UI (user interface) is about the look — the colour theme, the shape and size of buttons, the spacing, the overall layout. UX (user experience) is far broader: it’s the whole experience of using the product, how easy and intuitive it is to get things done. In other words, UI is a subset of UX.
MVP: building the smallest thing that works
Your PRD is ready — but for which version of the product? When you’re building something brand new, you start with an MVP (minimum viable product): the most basic version you can get into the market quickly, with just enough features to test, validate and iterate on the core hypothesis behind the problem you’re solving.
Say you’re launching an ecommerce platform. Your MVP should focus on the core action — purchasing an item. So you build search and discovery, the product-listing page, and payment checkout. Everything after the sale — order tracking, customer-care queries, refunds — can be handled off-platform for now, over email. Because what’s the point of building refund flows if there are no orders yet? Those come in a later version. Which tells you something important: just like the PRD and the designs, the actual build is iterative too. A huge part of product management is simply iterating quickly — build something, get feedback, incorporate it, iterate.
Into execution: sprints, stand-ups, tech debt and APIs
Now the PRD is handed to engineering and the real coding begins. That period of building and then testing is a sprint. Its length varies by organisation, but typically it’s anywhere from two to six weeks.
During the sprint you’ll have stand-ups — quick status-update meetings, held daily or weekly depending on your sprint length. They don’t need to be detailed; the point is to flag significant milestones (“dev complete on the payments module”), any blockers, and red flags like a flaw in the plan or a timeline slip.
You’ll also hear about technical debt — think of it as engineering’s own backlog: code optimisation, API documentation, updating libraries to their latest versions. As a PM you don’t need to go deep into it, but do accept that it’ll eat some of your sprint bandwidth, because good engineering teams pick up a few tech-debt tasks every sprint. My honest advice from years of doing this: don’t argue or interrogate it too much. A lot of it is genuinely technical, the benefits aren’t always visible to us, and trusting your engineering leaders here buys you far more than nickel-and-diming their debt ever will.
One more term worth truly understanding is the API (application programming interface). Simply put, an API is a communication layer that lets different services talk to each other — it takes a request from one service, tells another what to do, and brings the response back. Almost every product you’ll ever work on relies on a bunch of APIs. Take something as ordinary as updating your email in an app. The moment you tap “View Profile”, one API fetches your current details from the backend so the front end can display them. You type the new email, the front end hands it to another API, which passes it to the backend database to update it. That API’s response confirms success back to the front end — and only then do you see “Profile updated successfully”. That’s a chain of APIs, working in the background of the simplest action.
Testing and release
Once the code is written, it has to be tested against the expectations set in the PRD. The testing process itself is called QA (quality assurance), and you’ll meet a few flavours of it. They’re all testing — the difference is who tests and at what stage:
- Alpha testing — done by the internal testing team; as a PM you have little role here.
- UAT (user acceptance testing) — done by whoever raised the feature, i.e. you (the PM) and maybe stakeholders like sales or finance. Only once UAT gets a green light does the product go live.
- Beta testing — early access for a select set of real users, so they can surface feedback. Often they don’t even report it explicitly; it’s tracked through data — crashes, load time, API success ratio.
Then comes the release. You’ll hear it called go-live, shipping, deployment, “pushed to production”, rollout — all the same thing. On the web it’s always a 100% release: whoever opens the site gets the latest version. In the app world, though, both the Google Play Store and Apple App Store let you do a phased rollout — release to a small set of users first, watch for crashes or major issues, then gradually ramp to 100%. (That’s exactly how beta testing on real users is achieved.)
After release, it’s good practice to send out release notes — a brief summary of what just went to production. They do two jobs: they act as lightweight documentation of what shipped and when (handy for later debugging), and they make sure non-technical stakeholders know the release happened, which quietly builds accountability. On that note — a heads-up that surprises newcomers: sometimes a stakeholder will push hard, with real management pressure, to ship a feature “we absolutely need”… and then never touch it once it’s live. It’s frustrating. I won’t get into why here — just know it happens.
Go-to-market, scale and A/B testing
Release done, notes sent — job finished, right? Not yet. Next comes the GTM (go-to-market) plan. Who owns it varies — sometimes product, sometimes marketing — but what it is matters more than who owns it. A release only means the product is available; whether users actually show up and use it is still a question mark.
A lucky few brands have such loyal fans that users pull the product towards themselves — a “pull” strategy. Apple is the classic example. Most products, though, rely on a push strategy: you actively push the product to users, get them to try it once, and hope the ones who like it stick while the rest churn. That’s what a GTM plan is for — making sure the product doesn’t fail simply because nobody knew it existed. It usually covers your marketing strategy, push notifications (to whom, how often, when), launch emails, a landing page highlighting the release, any internal training for sales or customer-care teams, the metrics you’ll watch, and any A/B tests you’ll run at launch. The goal of all of it is scale — more and more people using the product. (You’ll hear it called adoption, traction, momentum too — same thing.)
A/B testing deserves its own mention. It’s an experiment: you show two variations of your product to two comparable sets of users, changing just one or two things between them — a page layout, two different home-page banners, or the classic example, the way OTT platforms like Netflix test thumbnails to see which drives the most clicks. Even tiny things — a button’s colour, square corners vs rounded. Whichever version converts best becomes the default going forward.
Measuring success: KPIs, product-market fit and sunset
Once your product is live and has some scale, you track a set of KPIs (key performance indicators) — the metrics that tell you whether it’s doing its job. Common ones include DAU/MAU (daily/monthly active users), CTR (click-through rate), engagement metrics like average session time or sessions per DAU, and funnel analysis — starting from how many users open the app, down through how many searched, clicked a result, and finally converted (bought, watched, booked — whatever your product’s core action is).
Say the numbers are excellent — revenue up, engagement off the charts, an obvious success. Congratulations: you’ve reached product-market fit (PMF). The name says it — the product and the market simply fit; it’s genuinely solving the problem it was built for. But there’s no single metric or milestone that declares it. PMF is a journey — consistent strong performance and growth over time that, in hindsight, confirms you got there. And if the product didn’t perform? Then, as ever, product management is about iteration: analyse the data, gather feedback, build a better next version, and run the loop again. Nobody hits PMF on the first try. It takes time.
And finally, every product’s story can end in deprecation — shutting down, or “sunsetting”. Sometimes it’s a failure: despite several attempts, it never found scale or revenue, so it’s retired (remember YouTube Stories, launched in 2019 to chase Snapchat, and quietly shut down?). Sometimes even hugely successful products get sunset — they ruled for years, but tastes and trends moved on and they couldn’t adapt (remember MySpace?). And sometimes it’s pure external bad luck — new regulation, or an event like COVID, which took out plenty of perfectly good travel startups. A shutdown doesn’t always mean a bad product. Not every launch can be a success, and that’s just the reality of building software.
And that’s the whole journey — from a line in a backlog to a live product, and everything in between. That, in practice, is what product management actually is.
Frequently Asked Questions
What is product management in simple terms?
Product management is the practice of deciding what product to build and why, then guiding it from idea to launch and beyond. The product manager owns the product’s direction and success — turning a backlog of ideas into a roadmap, defining requirements, working with design and engineering to build it, taking it to market, and improving it based on how it performs.
What does a product manager actually do?
A product manager prioritises the backlog into a roadmap, writes the PRD, works closely with design and engineering through the build and testing, coordinates the launch and go-to-market plan, and tracks the KPIs afterwards. They’re less a “boss” and more an orchestrator who keeps everyone aligned on what to build and why.
What is the difference between UX and UI?
UI (user interface) is about how a product looks — colours, buttons, spacing, layout. UX (user experience) is broader: the entire experience of using the product and how easy and intuitive it is. UI is really a subset of UX.
What is an MVP (minimum viable product)?
An MVP is the most basic version of a product that you can release quickly, with just enough features to test and validate the core idea. You ship it, learn from real usage, and iterate — rather than spending months building everything before you know whether the core hypothesis even holds.
Do you need to be technical to become a product manager?
No — you don’t need to code. But you should understand concepts like APIs, sprints and technical debt well enough to collaborate credibly with engineers and make sensible trade-offs. Curiosity about how things work matters far more than a computer-science degree.
If this cleared the fog and you’re serious about building a career in product, the fastest way to accelerate is with someone who’s already walked the path. I’ve mentored 50+ people into and up through PM roles at Google, Microsoft and Amazon. Book a free 1:1 mentorship session and let’s map out your next step.
Want to keep going? Read up on the top 10 product management skills, see what a day in the life of a product manager really looks like, and if you’re trying to get in, start with how to break into product management.



