Bird
Raised Fist0
AI for Everyoneknowledge~30 mins

Types of AI (narrow AI vs general AI) in AI for Everyone - Hands-On Comparison

Choose your learning style10 modes available

Start learning this pattern below

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
Types of AI: Narrow AI vs General AI
📖 Scenario: You are learning about different types of Artificial Intelligence (AI) to understand how they work in real life.Imagine you want to organize information about AI types to explain to a friend.
🎯 Goal: Create a simple data structure to hold examples of Narrow AI and General AI, then categorize them clearly.
📋 What You'll Learn
Create a dictionary named ai_types with two keys: 'Narrow AI' and 'General AI'
Assign a list of exactly three examples to each key as specified
Create a variable named example_count that counts total examples across both AI types
Use a loop with variables category and examples to iterate over ai_types.items()
Add a final statement that sets a variable summary to a string describing the total examples
💡 Why This Matters
🌍 Real World
Organizing and categorizing information clearly helps in teaching and understanding complex topics like AI.
💼 Career
Data organization and clear communication are key skills in many jobs, including AI research, education, and software development.
Progress0 / 4 steps
1
Create the AI types dictionary
Create a dictionary called ai_types with two keys: 'Narrow AI' and 'General AI'. Assign the list ['Voice assistants', 'Image recognition', 'Spam filters'] to 'Narrow AI' and the list ['Human-level reasoning', 'Self-aware systems', 'General problem solving'] to 'General AI'.
AI for Everyone
Hint

Use a dictionary with two keys and assign the exact lists to each key.

2
Count total AI examples
Create a variable called example_count and set it to 0. Then add the total number of examples from both 'Narrow AI' and 'General AI' lists.
AI for Everyone
Hint

Start with zero and add the length of each list from the dictionary.

3
Iterate over AI types
Use a for loop with variables category and examples to iterate over ai_types.items(). Inside the loop, add a comment describing that you are processing each AI category.
AI for Everyone
Hint

Use a for loop with the exact variable names to go through the dictionary items.

4
Create summary description
Add a variable called summary and set it to the string "There are X total AI examples." where X is the value of example_count using an f-string.
AI for Everyone
Hint

Use an f-string to include the example_count variable inside the string.

Practice

(1/5)
1. Which type of AI is designed to perform a single specific task, like voice recognition or playing chess?
easy
A. General AI
B. Narrow AI
C. Super AI
D. Artificial Consciousness

Solution

  1. Step 1: Understand the definition of Narrow AI

    Narrow AI is built to do one specific task very well, such as recognizing speech or recommending products.
  2. Step 2: Compare with General AI

    General AI can perform many different tasks like a human, but it is not yet fully developed.
  3. Final Answer:

    Narrow AI -> Option B
  4. Quick Check:

    Single-task AI = Narrow AI [OK]
Hint: Single-task AI means Narrow AI [OK]
Common Mistakes:
  • Confusing General AI with Narrow AI
  • Thinking Super AI is the current common AI
  • Assuming Artificial Consciousness is the same as General AI
2. Which of the following statements correctly describes General AI?
easy
A. General AI can perform many different tasks like a human.
B. General AI is a type of hardware device.
C. General AI is widely used in smartphones today.
D. General AI is designed to perform only one task.

Solution

  1. Step 1: Recall the meaning of General AI

    General AI refers to AI systems that can understand, learn, and perform many tasks like a human being.
  2. Step 2: Eliminate incorrect options

    General AI is designed to perform only one task. is Narrow AI, General AI is widely used in smartphones today. is false because General AI is not widely used yet, General AI is a type of hardware device. is incorrect as AI is software-based.
  3. Final Answer:

    General AI can perform many different tasks like a human. -> Option A
  4. Quick Check:

    Many-task AI = General AI [OK]
Hint: General AI = many tasks like humans [OK]
Common Mistakes:
  • Mixing up Narrow AI and General AI
  • Thinking General AI is common today
  • Confusing AI software with hardware
3. Consider this statement: "A voice assistant that can only answer questions about the weather is an example of which AI type?" What is the correct classification?
medium
A. Super AI
B. General AI
C. Narrow AI
D. Artificial Intelligence Hardware

Solution

  1. Step 1: Analyze the AI's capability

    The voice assistant only answers weather questions, so it performs a single specific task.
  2. Step 2: Match the capability to AI type

    Since it does one task, it fits the definition of Narrow AI, not General AI which can do many tasks.
  3. Final Answer:

    Narrow AI -> Option C
  4. Quick Check:

    Single-task assistant = Narrow AI [OK]
Hint: Single-task assistant = Narrow AI [OK]
Common Mistakes:
  • Choosing General AI because it sounds advanced
  • Confusing AI type with hardware
  • Selecting Super AI which is not yet real
4. A student says: "General AI is already used in many smartphones today." What is wrong with this statement?
medium
A. General AI is not yet fully developed or widely used.
B. Smartphones do not use any AI at all.
C. General AI only works on computers, not phones.
D. General AI is the same as Narrow AI.

Solution

  1. Step 1: Understand current AI technology in smartphones

    Smartphones mostly use Narrow AI for specific tasks like voice recognition, not General AI.
  2. Step 2: Identify the error in the statement

    General AI is still being developed and is not yet available in consumer devices like smartphones.
  3. Final Answer:

    General AI is not yet fully developed or widely used. -> Option A
  4. Quick Check:

    General AI not in phones yet [OK]
Hint: General AI is still in development, not common yet [OK]
Common Mistakes:
  • Assuming all AI in phones is General AI
  • Believing smartphones have no AI
  • Mixing Narrow AI with General AI
5. Imagine a future AI system that can learn to cook, drive a car, write stories, and solve math problems without being programmed for each task. What type of AI is this, and why is it challenging to build?
hard
A. Narrow AI, because it focuses on one task at a time.
B. Super AI, because it already exists and is easy to build.
C. Rule-based AI, because it follows fixed instructions.
D. General AI, because it can perform many tasks like a human, but it is hard to create due to complexity.

Solution

  1. Step 1: Identify the AI type by capability

    The AI can do many different tasks without specific programming for each, matching General AI's definition.
  2. Step 2: Understand the challenge in building it

    Creating such flexible AI is difficult because it requires advanced learning, reasoning, and adaptability like a human brain.
  3. Final Answer:

    General AI, because it can perform many tasks like a human, but it is hard to create due to complexity. -> Option D
  4. Quick Check:

    Multi-task AI with human-like learning = General AI [OK]
Hint: Many-task AI like humans = General AI, hard to build [OK]
Common Mistakes:
  • Confusing Narrow AI with General AI
  • Thinking Super AI already exists
  • Assuming rule-based AI can do many tasks