Tuesday, February 24, 2026
Sunday, December 21, 2025
CLASS XII: COMPUTER SCIENCE NOTES TO STUDY
SAMPLE PAPER 1: CLICK HERE TO OPEN SP1
ANSWER KEY: CLICK HERE TO OPEN
SAMPLE PAPER 2: CLICK HERE TO OPEN
ANSWER KEY: CLICK HERE TO OPEN
Tuesday, September 16, 2025
CLASS X: PRACTICAL FILE IT 402 (2025-2026)
FIRST PAGES for downloading
PRACTICAL FILE (PDF file) for downloading
First Pages Sample (PDF file) for formatting purpose
USE BAKER SIGNET FONT FOR SCHOOL NAME ONLY. CLICK HERE TO DOWNLOAD
Instructions:
1. Kindly do the page setting before taking the printout of the first page's file because that file is in MS Word.
2. Leave the Board Roll No. column blank on the first page.
3. Do not take screenshots for printing otherwise the file won't be accepted.
4. For editing in FIRST PAGES file, kindly download it first, and then you can edit it.
Wednesday, July 23, 2025
Thursday, May 22, 2025
Friday, May 2, 2025
Tuesday, November 5, 2024
CLASS X: PRACTICAL FILE IT 402 (2024-2025)
FIRST PAGES FOR DOWNLOADING
PRACTICAL FILE (PDF file) FOR DOWNLOADIG
First Pages Sample (PDF file) FOR FORMATTING PURPOSE
USE BAKER SIGNET FONT FOR SCHOOL NAME ONLY. CLICK HERE TO DOWNLOAD
Instructions:
1. Kindly do the page setting before taking the printout of the first page's file because that file is in MS Word.
2. Leave the Board Roll No. column blank on the first page.
3. Do not take screenshots for printing otherwise the file won't be accepted.
4. For editing in FIRST PAGES file, kindly download it first, and then you can edit it.
Sunday, November 3, 2024
CLASS XI: PRATCICAL FILE OF COMPUTER SCIENCE 083 (2024-2025)
Click here to open the practical file (pdf)
Click here to open the initial pages (word file)
Click here to open the SAMPLE initial pages (PDF file) (FORMATTING SAMPLE)
Instructions:
1. The first link is of practical questions with their output which you all have to take the printouts as it is (because it's in PDF format).
2. The second link is of initial pages which is in MS word document format and you have to edit it according to your details (like Name, roll no., etc.)
3. Do spiral binding of the printouts but make sure you get it checked from me before spiral binding.
4. Do not open MS word document file online i.e. Initial Pages file (in google docs), first download it and then edit it, otherwise setting may vary.
5. Steps to download are; File>Download>Microsoft Word(.docx)
6. For any kind of query, contact me directly. (don't hesitate)
Tuesday, May 7, 2024
Tuesday, January 30, 2024
CLASS XII: PRACTICAL PROGRAMS
1. Write a menu drive program to perform following operations into a binary file shoes.dat. 8
a) Add record b) Display records c) Search record d) Exit The structure of file content is: [s_id, name, brand, type, price]Saturday, January 27, 2024
CLASS XI: IMPORTANT PROGRAMS OF PYTHON
1. Write a program to check if all the elements of a tuple are in descending order or not
2. # Python program to check if the number is an Armstrong number or not
# take input from the user
num = int(input("Enter a number: "))
# initialize sum
sum = 0
# find the sum of the cube of each digit
temp = num
while temp > 0:
digit = temp % 10
sum += digit ** 3
temp //= 10
# display the result
if num == sum:
print(num,"is an Armstrong number")
else:
print(num,"is not an Armstrong number")
Output 1
Enter a number: 663 663 is not an Armstrong number
Output 2
Enter a number: 407 407 is an Armstrong number
Here, we ask the user for a number and check if it is an Armstrong number.
We need to calculate the sum of the cube of each digit. So, we initialize the sum to 0 and obtain each digit number by using the modulus operator %. The remainder of a number when it is divided by 10 is the last digit of that number. We take the cubes using exponent operator.
Finally, we compare the sum with the original number and conclude that it is Armstrong number if they are equal.
Source Code: Check Armstrong number of n digits
num = 1634
# Changed num variable to string,
# and calculated the length (number of digits)
order = len(str(num))
# initialize sum
sum = 0
# find the sum of the cube of each digit
temp = num
while temp > 0:
digit = temp % 10
sum += digit ** order
temp //= 10
# display the result
if num == sum:
print(num,"is an Armstrong number")
else:
print(num,"is not an Armstrong number")
You can change the value of num in the source code and run again to test it.