0% found this document useful (0 votes)
9 views13 pages

AI X Practical File

Uploaded by

sachingoja9
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
9 views13 pages

AI X Practical File

Uploaded by

sachingoja9
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 13

ARTIFICIAL INTELLIGENCE (417)

LIST OF PRACTICALS
CLASS-X

1. Write a python program to take 3 numbers from the user and display product of those
numbers.
2. Write a python program to take radius of a circle and print perimeter and area of the
circle.
3. Write a program to print factorial of a number
4. Write a program to print sum of even and odd integers of first n natural numbers.
5. Write a python program to print table of a number given by the user as an input.
6. Write a python program to check whether a number is Armstrong or not
7. Write a program in Python to find the largest and smallest element in a list.
8. Write a program to add the elements of the two lists.
9. Write a program to create a 2D array using NumPy.
10. Write a program to calculate mean, median and mode using Numpy
11. Write a program to display line chart from (2,5) to (9,10).
12. Write a program to display a scatter chart for the following points (2,5),
(9,10),(8,3),(5,7),(6,18).
13. Write a program to represent the data on the ratings of mobile games on bar chart.
The sample data is given as: Pubg, FreeFire, MineCraft, GTA-V, Call of duty, FIFA.
The rating for each game is as: 4.5, 4.8, 4.7, 4.6, 4.1, 4.3.
14. Read csv file saved in your system and display 10 rows.
15. Read csv file saved in your system and display its information
16. Write a program to read an image and display using Python
1. Write a python program to take 3 numbers from the user and display product of those
numbers.

Sample Output

2. Write a python program to take radius of a circle and print perimeter and area of the
circle.

Sample Output
3. Write a program to print factorial of a number

Sample Output

4. Write a program to print sum of even and odd integers of first n natural numbers.

Sample Output
5. Write a python program to print table of a number given by the user as an input.

Sample Output
6. Write a python program to check whether a number is Armstrong or not

Sample Output 1

Sample Output 2
7. Write a program in Python to find the largest and smallest element in a list.

Sample Output

8. Write a program to add the elements of the two lists.

Sample Output
9. Write a program to create a 2D array using NumPy.

Sample Output

10. Write a program to calculate mean, median and mode of the given data
[5,6,1,3,4,5,6,2,7,8,6,5,4,6,5,1,2,3,4]

Sample Output
11. Write a program to display line chart from (2,5) to (9,10).

Sample Output
12. Write a program to display a scatter chart for the following points (2,5),
(9,10),(8,3),(5,7),(6,18).

Sample Output
13. Write a program to represent the data on the ratings of mobile games on bar chart.
The sample data is given as: Pubg, FreeFire, MineCraft, GTA-V, Call of duty, FIFA.
The rating for each game is as: 4.5, 4.8, 4.7, 4.6, 4.1, 4.3.

Sample Output
14. Read csv file saved in your system and display 10 rows.

Sample Output
15. Read csv file saved in your system and display its information

Sample Output
16. Write a program to read an image and display using Python

You might also like