📚 CBSE Grade-10 Study Guide
HomeArtificial Intelligence (417)

Artificial Intelligence (417) — CBSE Class 10 board question

Q1. [4] § Unit Overview and Learning Objectives
Document 1 : CV is an upcoming field. Document 2 : Image Feature is an important part of CV.
You have two documents : Document 1 : CV is an upcoming field. Document 2 : Image Feature is an important part of CV. Implement all four steps of the Bag of Words (BoW) model to create a document vector table. Depict the outcome of each step.
Previously asked in CBSE board exam
2025 104/S Q19
Generated by claude-sonnet-4-6 · 2026-06-21 03:20 · grounding stimulus
Model Answer

Step 1 – Collect Training Data (Documents):

Step 2 – Design the Vocabulary (unique words):
{ CV, is, an, upcoming, field, Image, Feature, important, part, of }
(Stop words retained; total = 10 unique words)

Step 3 – Create Document Vectors (word frequency count):

| Word | CV | is | an | upcoming | field | Image | Feature | important | part | of |
|---|---|---|---|---|---|---|---|---|---|---|
| Doc 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 |
| Doc 2 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 |

Step 4 – Use Vectors for ML Model:
Doc 1 → [1,1,1,1,1,0,0,0,0,0]
Doc 2 → [1,1,1,0,0,1,1,1,1,1]

These numerical vectors are fed into a Machine Learning model for text classification or analysis.

---

Explanation
If a question refers to an image, map, graph or diagram that is not shown here, find the actual CBSE question paper on the CBSE website: cbse.gov.in.
Previous-year CBSE Grade 10 board exam questions, organised by subject and chapter, each with a model answer — free to read and print.