Jump into concepts and practice - no test required
or
Recommended
Test this pattern10 questions across easy, medium, and hard to know if this pattern is strong
Common Prompting Mistakes to Avoid
📖 Scenario: You are learning how to communicate clearly with AI tools like chatbots or virtual assistants. Good prompts help get better answers.
🎯 Goal: Build a simple checklist of common prompting mistakes to avoid when talking to AI.
📋 What You'll Learn
Create a list of common prompting mistakes
Add a variable to count how many mistakes are listed
Use a loop to display each mistake with a number
Add a final statement summarizing the importance of clear prompts
💡 Why This Matters
🌍 Real World
Clear communication with AI tools helps get accurate and useful answers quickly.
💼 Career
Understanding how to write good prompts is important for roles in AI, customer support, and content creation.
Progress0 / 4 steps
1
Create the list of common prompting mistakes
Create a list called mistakes with these exact entries: 'Being too vague', 'Asking multiple questions at once', 'Using unclear pronouns', 'Not specifying the format', and 'Ignoring context'.
AI for Everyone
Hint
Use square brackets [] to create a list and separate each mistake with commas.
2
Add a variable to count the number of mistakes
Create a variable called count and set it to the length of the mistakes list using the len() function.
AI for Everyone
Hint
Use len(mistakes) to get how many items are in the list.
3
Use a loop to display each mistake with a number
Write a for loop using index and mistake with enumerate(mistakes, 1) to go through the list. Inside the loop, create a string called line that combines the index, a period, a space, and the mistake text.
AI for Everyone
Hint
Use enumerate to get both the number and the item. Use an f-string to combine them.
4
Add a final statement about clear prompts
Create a variable called summary and set it to the string 'Clear prompts help AI give better answers.'.
AI for Everyone
Hint
Assign the exact string to the variable summary.
Practice
(1/5)
1. Which of the following is a common mistake when writing prompts for AI?
easy
A. Checking the AI's responses carefully
B. Providing clear context and examples
C. Being specific about what you want
D. Using vague or unclear questions
Solution
Step 1: Understand what makes a good prompt
Good prompts are clear and specific, helping AI understand the request.
Step 2: Identify common mistakes
Vague or unclear questions confuse the AI and lead to poor answers.
Final Answer:
Using vague or unclear questions -> Option D
Quick Check:
Vague prompts cause poor AI answers [OK]
Hint: Avoid vague questions; be clear and specific [OK]
Common Mistakes:
Writing broad or unclear prompts
Not giving enough context
Assuming AI knows your intent
2. Which prompt is correctly structured to avoid common mistakes?
easy
A. What do you think?
B. Tell me about stuff.
C. Explain the causes of climate change with examples.
D. Give me info.
Solution
Step 1: Analyze each prompt's clarity
The prompts "Tell me about stuff.", "What do you think?", and "Give me info." are vague or too broad without specifics.
Step 2: Identify the clear and specific prompt
Explain the causes of climate change with examples. asks for causes and examples, guiding the AI well.
Final Answer:
Explain the causes of climate change with examples. -> Option C
Quick Check:
Specific prompts guide AI better [OK]
Hint: Look for prompts with clear requests and examples [OK]
Common Mistakes:
Using vague words like 'stuff' or 'info'
Asking open-ended questions without focus
Not specifying what kind of answer is wanted
3. Consider this prompt: "List the benefits of exercise." What is a likely problem with this prompt?
medium
A. It is too long and complicated
B. It is too vague and lacks context
C. It uses technical jargon
D. It asks for an opinion
Solution
Step 1: Evaluate the prompt's clarity
The prompt is short and simple but does not specify details or context.
Step 2: Identify the issue
Without context, AI might give a generic or incomplete list.
Final Answer:
It is too vague and lacks context -> Option B
Quick Check:
Vague prompts cause unclear AI answers [OK]
Hint: Check if prompt gives enough detail or context [OK]
Common Mistakes:
Not specifying what kind of benefits to list
Assuming AI knows the user's intent
Using very short prompts without guidance
4. You wrote this prompt: "Explain AI." The AI gives a very short and unclear answer. What is the best way to fix this?
medium
A. Add more details and specify what aspect of AI to explain
B. Make the prompt shorter
C. Use slang and informal words
D. Repeat the same prompt multiple times
Solution
Step 1: Identify why the answer is unclear
The prompt is too broad, so AI doesn't know what to focus on.
Step 2: Improve the prompt
Adding details or specifying topics helps AI give a better answer.
Final Answer:
Add more details and specify what aspect of AI to explain -> Option A
Quick Check:
Specific prompts get clearer AI answers [OK]
Hint: Add details to broad prompts for better answers [OK]
Common Mistakes:
Using too short or broad prompts
Repeating prompts expecting different answers
Using unclear or informal language
5. You want the AI to generate a list of healthy dinner ideas but your prompt is: "Dinner ideas?" How can you improve this prompt to avoid common mistakes and get better results?
hard
A. Ask: 'Can you list 5 healthy dinner ideas with ingredients and cooking time?'
B. Just say: 'Food?'
C. Write: 'Tell me everything about dinner.'
D. Use: 'Dinner ideas' without question mark
Solution
Step 1: Identify the problem with the original prompt
"Dinner ideas?" is too short and vague, lacking details or guidance.
Step 2: Choose a prompt that is clear and specific
Ask: 'Can you list 5 healthy dinner ideas with ingredients and cooking time?' asks for a specific number of ideas, includes 'healthy', and requests ingredients and cooking time, guiding the AI well.
Final Answer:
Ask: 'Can you list 5 healthy dinner ideas with ingredients and cooking time?' -> Option A
Quick Check:
Specific, detailed prompts get better AI answers [OK]
Hint: Be specific and detailed in your prompt requests [OK]