Resume and Profile Fundamentals
How to structure a resume and write achievement-oriented bullet points that quantify real results.
What you'll learn
- Structure a resume into the standard sections employers expect, in order
- Write an achievement-oriented bullet point using action verb + task + quantifiable result
- Identify content that should be left off a resume
Prerequisites
Explanation
A resume has one job: let a busy reader understand, in under a minute, whether you're worth a longer conversation. That means structure matters as much as content. Most effective resumes follow a predictable section order:
- Contact information — name, email, phone, and a professional profile link if relevant. Kept short, at the top.
- Summary (optional but common) — two or three sentences positioning who you are and what you're aiming for.
- Experience — your work history, most recent first, each role described with achievement-oriented bullet points.
- Education — degree, institution, and graduation year (or expected year).
- Skills — a focused list of concrete, relevant skills, not a generic list of buzzwords.
The section that separates a forgettable resume from a strong one is Experience, and the unit that matters most there is the individual bullet point. A weak bullet describes a duty: "Responsible for handling customer complaints." A strong bullet describes an achievement, using a simple formula: action verb + task + quantifiable result. For example: "Resolved an average of 25 customer complaints per week, improving satisfaction scores by 15%." The second version tells the reader what you actually did, how much of it, and what changed because of it — three things the first version leaves out entirely.
Good action verbs are specific and active: "Led," "Built," "Reduced," "Automated," "Negotiated." Weak openers to avoid include "Responsible for," "Helped with," and "Worked on" — they describe an assignment, not an outcome, and they make every bullet on the page sound the same.
Quantifying a result doesn't always require a business metric. "Trained 4 new hires in their first month" or "Reduced page load time from 3.2 seconds to 1.1 seconds" both work because a number gives the reader a concrete sense of scale, something "helped improve performance" never can.
Equally important is knowing what to leave out. Resumes in most professional contexts should not include a photo, age, marital status, religion, or other personal characteristics unrelated to job qualifications — including them can invite bias and simply wastes limited space. Hobbies belong only if genuinely relevant or distinctive enough to spark a real conversation; a generic "reading, traveling" line rarely earns its place. Full home addresses are increasingly unnecessary; a city and a way to reach you is usually enough.
Formatting consistency matters more than people expect: mixing past and present tense across bullets, or switching bullet punctuation style halfway down the page, reads as carelessness even when the content itself is strong. Because a resume is often read for a matter of seconds before a decision to keep reading (or not) is made, every one of these structural choices is doing real work.
Standard resume section order
Contact Information leads to Summary (optional) leads to Experience (achievement-oriented bullets, most recent first) leads to Education leads to Skills — matching this order helps a fast reader find what they're looking for.
Example
Checks whether a resume bullet opens with an approved action verb and includes a quantified result.
function bulletHasActionVerbAndNumber(bullet) {
const actionVerbs = ["Led", "Built", "Reduced", "Increased", "Managed", "Designed", "Launched", "Resolved", "Automated", "Improved"];
const firstWord = bullet.trim().split(/\s+/)[0];
const startsWithVerb = actionVerbs.includes(firstWord);
const hasNumber = /\d/.test(bullet);
return startsWithVerb && hasNumber;
}
// Example: bulletHasActionVerbAndNumber("Reduced onboarding time by 30%") -> trueGuided exercise
Guided exercise
Write isStrongBullet(bullet) that returns true only if: (1) bullet's first word exactly matches one of these approved action verbs: 'Led', 'Built', 'Designed', 'Reduced', 'Increased', 'Launched', 'Automated', 'Negotiated', 'Trained', 'Streamlined'; and (2) bullet contains at least one digit character. Return false otherwise, including for an empty string.
Checks: Accepts an approved verb paired with a quantified result · Rejects a weak opener like 'Responsible for' with no number · plus 1 hidden check
Code editor. Press Escape then Tab to leave the editor if keyboard focus becomes trapped. Press Control+Shift+M inside the editor to toggle Tab-key focus trapping.
Stuck? Get a hint.
Independent exercise
Independent exercise
Write classifyResumeContent(itemType) that takes a string label and returns the resume section it belongs on. Use this mapping: 'job-title' and 'company-name' -> 'Experience'; 'degree' and 'graduation-year' -> 'Education'; 'programming-language' -> 'Skills'; 'email-address' and 'phone-number' -> 'Contact'. For 'marital-status', 'age', and 'photo', return the string 'omit' (these should not appear on a resume at all). For any other, unrecognized itemType, return null.
Checks: Maps 'degree' to the Education section · Classifies 'marital-status' as 'omit' · Maps 'phone-number' to the Contact section · plus 1 hidden check
Code editor. Press Escape then Tab to leave the editor if keyboard focus becomes trapped. Press Control+Shift+M inside the editor to toggle Tab-key focus trapping.
Stuck? Get a hint.
Common mistakes
- Writing generic, duty-focused bullets ('Responsible for...') instead of achievement-focused ones with a concrete result.
- Leaving results unquantified ('helped improve performance') when a specific number would make the same claim far more concrete.
- Including irrelevant personal information (age, marital status, a photo) that most professional contexts don't expect on a resume.
- Mixing verb tense (past for old roles, present for the current one, inconsistently) or bullet punctuation style across the page.
Knowledge check
Takeaway
A resume's Experience section is judged bullet by bullet — action verb, specific task, quantified result — and every piece of unrelated personal information you leave out makes room for one that actually matters.
Summary
Resumes follow a predictable section order (Contact, Summary, Experience, Education, Skills), and the strongest section is Experience, built from achievement-oriented bullets using an action verb, a specific task, and a quantifiable result. Personal characteristics unrelated to qualifications are generally left off.
Your notes
Notes save automatically.
Finished this lesson?
Mark it complete to track your progress and schedule a future review.
AI tutor
The optional AI tutor isn't enabled in this deployment. All lessons, exercises, quizzes, and search work fully without it.