Skip to content
Learn Netverks

Lesson

Step 2/36 6% through track

what-is-ai

What is AI?

Last reviewed May 28, 2026 Content v20260528
Track mode
none
Means
Read / quiz
Reading
~2 min
Level
beginner

This lesson

This lesson teaches What is AI?: artificial intelligence concepts, limitations, and responsible use in modern software and data products.

Teams apply What is AI? in every serious AI project—skipping it leaves blind spots in analysis and reviews.

You will apply What is AI? in contexts like: Product planning, policy, engineering leadership, and responsible rollout discussions.

Study explanations, case studies, and MCQs—this topic is read/quiz focused without a code runner.

When prerequisites for this topic are met and you are ready for focused study.

In everyday language, AI means computer systems that adapt behavior from data or rules to accomplish goals—classification, ranking, translation, planning, or generating content—without hard-coding every branch.

Narrow vs general AI

  • Narrow AI — excels at one task (spam filter, face unlock, chess engine)
  • General AI (AGI) — hypothetical human-level flexibility across tasks; not productized today
  • Product reality — virtually all shipped AI is narrow, often wrapped in UX that feels broader

Rule-based vs learned systems

# Rule-based (explicit logic)
def is_spam_rule(subject: str) -> bool:
    banned = ["winner", "free money", "click now"]
    return any(w in subject.lower() for w in banned)

# Learned (pattern from examples — conceptual)
# model.fit(labeled_emails)  # real training happens elsewhere

Rules are transparent but brittle; learned models generalize from examples but need data and monitoring.

Practice: Copy optional Python pseudocode into a local .ipynb notebook or REPL. This track is read-focused (execution_profile: none)—no in-browser AI lab; literacy first, not model training.

Where AI appears

Search ranking, fraud detection, medical triage assist, code completion, voice assistants, and content moderation. Each system has inputs, a model or rules engine, outputs, and humans who define success metrics.

Important interview questions and answers

  1. Q: Is Siri AGI?
    A: No—narrow AI orchestrating speech, search, and scripted skills.
  2. Q: AI vs automation?
    A: Automation follows fixed scripts; AI adapts from data or learned patterns within a task scope.

Self-check

  1. Define narrow AI in one sentence.
  2. Give one example of rule-based vs learned approach.

Tip: When someone says "AI," ask whether they mean rules, classic ML, or Gen AI—clarity prevents mismatched expectations.

Interview prep

Narrow vs AGI?
Shipped AI is narrow (one task); AGI is hypothetical general human-level flexibility.
Rules vs learned?
Rules are explicit and brittle; learned models generalize from examples but need data and monitoring.

Interview tip Lesson completion confidence

Can you explain this lesson in 30 seconds without reading notes?

Not saved yet.

Check yourself

Multiple choice — immediate feedback.

Discussion

Past discussion is visible to everyone. Only logged-in users can post comments and replies.

Starter discussion topics

  • What part of this lesson needs a second read?
  • What would you try differently in a real project?

Sign up or log in to post comments and sync lesson progress across devices.

No discussion yet. Be the first to ask a question.

Jump