CBSE Curriculum for Session 2025-2026 | Subject Code 417
This curriculum combines Inspire and Acquire modules to develop readiness for understanding and appreciating Artificial Intelligence and its applications. The course focuses on:
Explore AI concepts through interactive games:
Steps in developing an AI project:
Key concepts in data protection:
Creating effective data visualizations:
Applications of statistics:
Probability in real-world scenarios:
Popular generative AI applications:
Important ethical aspects:
Simple program to calculate area:
# Calculate area of rectangle
length = float(input("Enter length: "))
width = float(input("Enter width: "))
area = length * width
print("Area of rectangle:", area)
Manipulating lists in Python:
# Create and modify a list
students = ["Arjun", "Sonakshi", "Vikram"]
print("Original list:", students)
# Add a new student
students.append("Jay")
print("After adding:", students)
# Remove the second student
del students[1]
print("After removal:", students)
Answer: The three main domains of Artificial Intelligence are:
Answer: The AI project cycle consists of:
Answer:
Answer:
# Program to calculate average of three numbers
num1 = float(input("Enter first number: "))
num2 = float(input("Enter second number: "))
num3 = float(input("Enter third number: "))
# Calculate average
average = (num1 + num2 + num3) / 3
# Display result
print("The average is:", average)
Answer: Generative AI refers to artificial intelligence systems that can create new content such as text, images, music, or video. Examples include: