0
0
Intro to Computingfundamentals~3 mins

Why What AI actually is in Intro to Computing? - Purpose & Use Cases

Choose your learning style9 modes available
The Big Idea

What if your computer could learn and think like a helpful friend?

The Scenario

Imagine you have to sort thousands of photos by what's in them--cats, dogs, or cars--just by looking at each one yourself.

It would take forever and be really tiring.

The Problem

Doing this by hand is slow and mistakes happen easily because your brain gets tired.

Also, you can't quickly handle new types of photos or huge amounts of data.

The Solution

AI can learn from examples and quickly sort photos for you.

It works like teaching a smart helper who remembers patterns and makes decisions fast without getting tired.

Before vs After
Before
for photo in photos:
    if 'cat' in photo:
        print('Cat')
    elif 'dog' in photo:
        print('Dog')
After
ai_model = train_model(photo_data)
for photo in photos:
    label = ai_model.predict(photo)
    print(label)
What It Enables

AI lets computers understand and act on complex tasks like humans, but faster and at a much bigger scale.

Real Life Example

Smart assistants like Siri or Alexa use AI to understand your voice and answer questions instantly.

Key Takeaways

Manual tasks are slow and error-prone when done by humans alone.

AI learns from data to perform tasks quickly and accurately.

This opens up new possibilities for automation and smart technology.