Grade 8 Curriculum ICT
Grade 8 Curriculum ICT
Landmark Project
Curriculum Outline
ICT (Information Communication Technology)
Class VIII
Academic Session
2025-26
Text Book: ICT Starters On track Stage 2 (Cambridge)
Introduction to Computing Using Python (booklet)
Edition: 4th Edition
Publisher: Cambridge University Press
Teaching Resources:
• Teacher’s Resource Book
Scheme of Work
First Term (August 2025 – December 2025)
Weeks: 18
Teaching weeks: 15 Revision + Examination: 1+2
Suggested Number of lessons per week:2
Handouts Python
1st Term August –December 2025
Revision + Examination Revision of the 2nd term topics and final May
exams.
1st Term August –December 2025
Revision + Examination Revision of the 1st term topics and final December
exams.
2nd Term January- May 2026
Copy Edit
num1 = float(input("Enter first number: "))
num2 = float(input("Enter second number: "))
print("Sum:", num1 + num2)
print("Product:", num1 * num2)
3. Guess the Number Game
Objective: Use loops, conditionals, and random
module.
Activity:
The computer generates a number between 1–10.
The user keeps guessing until they get it right.
python
Copy Edit
import random
number = random.randint(1, 10)
guess = int(input("Guess a number between 1 and
10: "))
while guess != number:
guess = int(input("Try again: "))
print("You guessed it!")
4. Even or Odd Checker
Objective: Understand conditionals and modulo
operation.
Activity:
Ask the user to input a number and tell them
whether it’s even or odd.
python
Copy Edit
num = int(input("Enter a number: "))
if num % 2 == 0:
print("It’s even!")
else:
print("It’s odd!")
Revision + Examination Revision of the 2nd term topics and final May
exams.