CLASS IX AI Practical file Questions
Sl No Topic Practical Question
1. Write a program to print the multiples of 7
Intro to 2. Write a program To find the sum of two numbers 15 and 20.
1
Python 3. Write a program To calculate Area and Perimeter of a rectangle
4. Write a program To calculating average marks of 3 subjects
5. Program to check if a person can vote
6. Write a program to find all even and odd numbers between 1 to
2 Loops
100
7. Write a program to check if a number is prime or not
8. Create a list in Python of children selected for science quiz with
following names- Arjun, Sonakshi, Vikram, Sandhya, Sonal, Isha,
Kartik
Perform the following tasks on the list in sequence-
i) Print the whole list
ii) Delete the name “Vikram” from the list
iii) Add the name “Jay” at the end
iv) Remove the item which is at the second position.
3 List 9. Create a list List_1=[10,20,30,40]. Add the elements [14,15,12]
using extend function. Now sort the final list in ascending order and
print it.
10. Create a list num=[23,12,5,9,65,44]
i) print the length of the list
ii) print the elements from second to fourth position using positive
indexing
iii) print the elements from position third to fifth using negative
indexing