3rd grade writing prompts
Should every classroom have a pet? Give three reasons.
Write about a time you learned something difficult.
Imagine you found a map under your desk.
Describe your favorite place using all five senses.
What rule would you add at school?
Act as a seasoned business consultant. Conduct a comprehensive SWOT analysis for a [insert industry/business type, e.g., mid-sized SaaS company specializing in HR tech]. Include at least 5 points for each category (Strengths, Weaknesses, Opportunities, Threats) and provide a summary paragraph suggesting actionable next steps based on the findings.
Develop a complete Go-to-Market (GTM) strategy for launching a [insert product/service] targeting [insert target audience]. The strategy must include: Value Proposition, Target Audience Persona, Pricing Strategy, Sales Channels, Marketing and Promotional tactics, and Key Performance Indicators (KPIs) to track success over the first 90 days.
Create a framework for analyzing three main competitors in the [insert industry] market. The analysis should cover their product offerings, pricing models, target audience, marketing channels, and perceived customer satisfaction. Conclude with identifying 3 distinct market gaps that a new entrant could capitalize on.
Draft a crisis management communication plan for a scenario where [insert crisis, e.g., a major data breach exposes customer information]. Include immediate action steps for the first 24 hours, templates for an internal memo to employees, a press release for the media, and a direct email to affected customers. Emphasize transparency and corrective actions.
Generate 3 strategic Objectives and 3-4 measurable Key Results (OKRs) for each objective for the upcoming quarter for a [insert department, e.g., Customer Success Team]. The overarching company goal is to [insert company goal, e.g., increase annual recurring revenue by 15% and improve customer retention]. Ensure the KRs are quantitative and time-bound.
Create a slide-by-slide outline for a 12-slide investor pitch deck for a startup aiming to raise a Seed round. For each slide, provide the title, the primary message it should convey, and the specific data points or visuals that should be included to persuade venture capitalists.
You are an operations manager reviewing a process that currently takes too long: [insert process, e.g., employee onboarding]. Outline a step-by-step approach to identifying the bottlenecks, applying lean principles to eliminate waste, and establishing a new standardized operating procedure (SOP). Include metrics to measure the improvement.
Draft a 5-step B2B sales outreach sequence targeting [insert title, e.g., VP of Marketing] in the [insert industry]. Include a mix of email templates and LinkedIn connection note scripts. The sequence should span over 14 days and gradually shift from providing pure value/insights to asking for a brief discovery call.
Design a comprehensive customer retention strategy for a subscription-based business experiencing a 10% monthly churn rate. Include proactive engagement tactics, an at-risk customer identification protocol, a customer loyalty program outline, and a win-back campaign for recently canceled accounts.
Outline the structure and key assumptions needed to build a 3-year financial projection model for a new [insert business type, e.g., boutique fitness studio]. Identify the primary revenue drivers, fixed and variable costs, capital expenditures, and the break-even point analysis. Explain how to test different scenarios (optimistic, pessimistic, realistic).
Generate a comprehensive keyword cluster map around the core topic "[insert broad topic, e.g., vegan baking]". Identify 4 primary sub-topics (pillar pages) and list 5 long-tail keywords for each sub-topic that can serve as supporting cluster articles. Briefly explain the search intent for each sub-topic.
Provide a detailed, step-by-step On-Page SEO audit checklist for optimizing an existing blog post. Include checks for title tags, meta descriptions, header structure (H1, H2, H3), keyword density, image alt text, internal and external linking, URL structure, and mobile-friendliness.
Outline a Local SEO strategy for a new [insert business type, e.g., dental clinic] in [insert city]. Detail the steps for optimizing a Google Business Profile, acquiring local citations, generating customer reviews, and creating localized on-site content to capture "near me" search traffic.
Draft 3 different email outreach templates for acquiring backlinks. Template 1: The Skyscraper Technique (offering a better resource than they currently link to). Template 2: Broken Link Building (notifying them of a broken link and suggesting your content as a replacement). Template 3: Guest Post Pitch (pitching 3 article ideas to a niche blog).
Create a comprehensive Technical SEO checklist for migrating a website to a new domain or CMS. Include pre-migration steps (crawling the current site, mapping URLs), launch day steps (implementing 301 redirects, updating robots.txt), and post-migration monitoring (checking Google Search Console, monitoring 404 errors).
Analyze the search intent behind the following 5 keywords related to [insert industry]: [Keyword 1], [Keyword 2], [Keyword 3], [Keyword 4], [Keyword 5]. Classify each as Informational, Navigational, Commercial, or Transactional, and recommend the best type of content format (e.g., blog post, product page, tool) to satisfy each intent.
Write the exact JSON-LD schema markup for a [insert schema type, e.g., Recipe, FAQPage, LocalBusiness]. Provide a complete, valid code snippet with placeholder text for the specific details (like name, description, image URL, rating) so it can be easily copied and implemented by a developer.
Draft a set of guidelines for freelance writers to ensure all future articles meet Google's E-E-A-T (Experience, Expertise, Authoritativeness, Trustworthiness) standards. Include rules for citing credible sources, establishing author bios, sharing firsthand experience, and maintaining objective, well-researched tones.
Outline a step-by-step process for conducting a backlink gap analysis between my website and three top-ranking competitors. Explain which SEO tools to use, how to filter the data to find the most attainable and relevant link opportunities, and how to prioritize outreach targets based on Domain Authority (DA) and relevance.
Generate 5 SEO-optimized Title Tags (under 60 characters) and 5 matching Meta Descriptions (under 155 characters) for a webpage about [insert topic, e.g., how to start a podcast]. Ensure the primary keyword is included near the beginning and focus on maximizing the Click-Through Rate (CTR) by using action words and emotional triggers.
Review the following block of [insert language, e.g., JavaScript] code: [Paste messy code]. Refactor this code to improve readability and maintainability. Apply clean code principles, such as extracting long methods into smaller helper functions, using descriptive variable names, and removing deeply nested conditionals.
Generate a Regular Expression (Regex) to validate a string that must meet the following criteria: It must be an email address ending specifically in ".edu" or ".ac.uk", it cannot contain any numbers before the "@" symbol, and it must support subdomains. Provide the regex pattern and explain how each part of it works.
Design a relational database schema (SQL) for a simple Library Management System. I need tables for Books, Authors, Borrowers, and Loans. Provide the CREATE TABLE statements, define the Primary Keys and Foreign Keys, and explain the relationship (one-to-many, many-to-many) between the tables.
I am getting a "[insert error message, e.g., NullReferenceException]" on line 42 of my [insert language, e.g., C#] code. Here is the code snippet: [Paste code]. Explain why this error is occurring and provide the corrected code to fix the issue.
Write a basic REST API endpoint using [insert framework, e.g., Node.js with Express] that handles a POST request to "/api/users". The endpoint should accept JSON data (username, email, password), validate that all fields are present, hash the password (pseudocode is fine), and return a 201 Created status with a success message.
Write comprehensive unit tests using [insert testing framework, e.g., Jest] for the following function: [Paste function]. The tests should cover the happy path, edge cases (like empty inputs or extreme values), and ensure proper error handling if invalid arguments are passed.
Explain what this block of [insert language, e.g., Python] code does as if you were explaining it to a non-technical project manager. Focus on the business logic and the final outcome, rather than explaining the syntax line-by-line. [Paste code].
The following function solves the [insert problem, e.g., Two Sum] problem, but it currently has an O(n^2) time complexity. [Paste code]. Optimize this algorithm to achieve O(n) time complexity using a different data structure, such as a Hash Map. Explain the trade-offs between the two approaches.
Write a multi-stage Dockerfile for a [insert stack, e.g., React frontend and Go backend] application. The first stage should build the application, and the second stage should use a lightweight base image (like Alpine) to serve the built artifacts, minimizing the final image size.
Translate the following [insert source language, e.g., Ruby] script into [insert target language, e.g., Python]. Ensure that the translated code uses the idiomatic conventions (the "pythonic" way) of the target language, rather than just doing a direct line-by-line literal translation. [Paste code].
Create a structured outline for an academic literature review on the topic of [insert topic, e.g., the impact of remote work on employee burnout]. Group the outline thematically rather than chronologically. Include an introduction that defines the scope, 3 main thematic sections comparing different studies, a section identifying current gaps in the research, and a conclusion.
I am interested in researching [insert broad topic, e.g., artificial intelligence in healthcare]. Help me narrow this down. Generate 3 highly specific, focused research questions that are measurable and debatable. For each question, formulate a potential testable hypothesis.
Act as a research assistant. I will paste the abstract and conclusion of an academic paper. Please summarize the core findings into a single, easily digestible paragraph. Then, list 3 bullet points detailing the methodology used, and 2 bullet points outlining the authors' stated limitations of the study. [Paste abstract/conclusion].
Design a 10-question survey to investigate [insert research goal, e.g., consumer attitudes towards sustainable packaging]. Include a mix of multiple-choice, Likert scale (1-5 agreement), and one open-ended question. Ensure the questions are neutrally worded to avoid leading the respondent and minimizing bias.
Create a semi-structured interview guide for qualitative research exploring [insert topic, e.g., the transition experience of first-generation college students]. Include an opening script regarding confidentiality, 5 primary open-ended questions that encourage storytelling, and 2-3 specific probing/follow-up questions for each primary question to dig deeper into their answers.
I have conducted a survey comparing the test scores of two different groups of students (Group A used Method X, Group B used Method Y). Outline a basic data analysis plan. What specific statistical tests (e.g., T-test, ANOVA) should I run to determine if the difference in scores is statistically significant, and what is the required p-value?
Provide a 5-point checklist for critically evaluating a source (e.g., a news article, a think-tank report) for bias and credibility. Include specific questions a researcher should ask regarding the author's credentials, funding sources, use of emotional language, and citation of primary data.
I am reading two studies on [insert topic, e.g., the health benefits of coffee]. Study A says it is highly beneficial; Study B says it carries risks. Provide a framework for how to write a synthesis paragraph that acknowledges this conflict, compares their differing methodologies (sample size, duration), and presents a nuanced conclusion rather than just taking one side.
Draft an Executive Summary (max 400 words) for a research grant proposal investigating [insert topic]. The summary must quickly hook the reviewer by explaining the urgency of the problem, clearly state the research objectives, briefly outline the methodology, and emphasize the potential real-world impact of the expected findings.
I am searching academic databases (like PubMed or JSTOR) for papers regarding [insert complex topic, e.g., the effect of social media on teenage anxiety, excluding studies about cyberbullying]. Construct 3 complex Boolean search strings using AND, OR, NOT, and quotation marks to help me find highly relevant, narrow results.
Write an engaging, SEO-optimized product description for a [insert product, e.g., hand-poured soy wax candle scented with lavender and cedarwood]. Include a catchy headline, a short persuasive paragraph highlighting the sensory experience and benefits, a bulleted list of 5 key features/specs, and seamlessly integrate the keyword "[insert target keyword]".
Draft a 3-part abandoned cart email sequence for an e-commerce store selling [insert products]. Email 1 (sent after 1 hour): A gentle, helpful reminder. Email 2 (sent after 24 hours): Highlighting social proof (a customer review) and addressing a common objection. Email 3 (sent after 48 hours): Creating urgency and offering a 10% discount code.
Outline the copy structure for the homepage of a new Shopify store selling [insert niche, e.g., minimalist leather wallets]. Provide the text for: 1) The Hero Section (Headline, Subheadline, CTA), 2) A "Value Proposition/Benefits" section (3 icons with short text), 3) A "Social Proof" section headline, and 4) An SEO-rich footer paragraph.
Outline a marketing strategy for a Black Friday / Cyber Monday sale for a [insert type of store, e.g., boutique clothing brand]. The strategy should span two weeks. Detail the pre-sale VIP early access strategy for email subscribers, the main discount offer (e.g., tiered discounts vs. site-wide percentage), and 3 specific social media posts to run during the weekend.
Write an automated email requesting a product review from a customer who purchased a [insert product] 14 days ago. The tone should be warm and appreciative. Make the "ask" extremely frictionless, and explain briefly how their review helps a small business grow.
Generate 5 highly optimized product title variations for a [insert product, e.g., stainless steel insulated water bottle]. Each title should follow e-commerce best practices by including the Brand Name, Core Product, Key Feature (e.g., 32oz, BPA-free, keeps cold 24 hrs), and Color/Size. Ensure they are under 150 characters.
I sell [insert main product, e.g., high-end coffee machines]. Suggest 1 pre-purchase order bump (under $20), 1 post-purchase one-click upsell (a related premium item), and 1 cross-sell email strategy to send 30 days later. Explain *why* these specific items make psychological sense to the buyer at those exact moments.
Draft a clear, customer-friendly 30-day Return and Refund Policy for an online clothing boutique. The tone should build trust rather than sounding like legal jargon. Clearly state the condition the items must be in (unworn, tags on), who pays for return shipping, and the timeline for processing the refund.
Brainstorm 4 completely different marketing angles/hooks for a Facebook Ad video selling a [insert product, e.g., posture-correcting desk chair]. Angle 1: Focus on pain relief. Angle 2: Focus on productivity/focus. Angle 3: Focus on aesthetics/home office design. Angle 4: Focus on long-term health. Provide a 1-sentence hook for each video.
Create a "Customer Avatar" for an e-commerce store that sells [insert extremely specific niche, e.g., indoor gardening kits for apartment dwellers]. Name the avatar. What are their biggest frustrations with traditional gardening? Where do they hang out online? What aesthetic appeals to them most?
4th grade writing prompts
Is homework helpful? Support your opinion.
Tell a story about a plan that went completely wrong.
Design an invention that helps your community.
Describe a place that feels peaceful to you.
Would you rather explore space or the deep ocean?
Middle school writing prompts
Should students help decide what they study?
Write about a small decision that changed something important.
Is technology making friendships stronger or weaker?
Create a story that begins with a missing photograph.
What does courage look like in everyday life?
How to use these prompts
- Choose a prompt that creates a question or picture in your mind.
- Spend two minutes listing details before writing a first sentence.
- Write without editing for five to ten minutes, then read your work aloud.
