The document lists 16 programming practicals with brief descriptions. The practicals cover topics like calculations using loops, conditional statements, functions, sorting, searching, and working with CSV files.
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 ratings0% found this document useful (0 votes)
24 views2 pages
Index Comp Report File
The document lists 16 programming practicals with brief descriptions. The practicals cover topics like calculations using loops, conditional statements, functions, sorting, searching, and working with CSV files.
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/ 2
S.No.
Name of the Practical Page Remarks
01 Program to calculate and display the 01 difference of two inputted numbers.
02. Program to illustrate nested...if else through a 02
four-Function calculator. 03. Program to calculate income tax of an 03-04 employee on the basis of basic salary and total savings inputed by the user (using nested if else statement) as per the given slabs:
04. Program to calculate factorial of a number 05
using while loop. 05 Program to input a string and count the 06 number of uppercase andlowercase letters. 06. Program to store students information like 07-08 admission number roll number name and marks in a dictionary and display information on the basis of admission number. 07. Write a program for sorting in ascending order 09 using bubble sort . 08. Write a program for sorting in ascending order 10 using insertion sort. 09. Write a program to perform binary search 11 using randint[] 10. Write a python function to compute area of a 12 triangle. 11. Write a function to display Fibonacci series 13 using recursion 12. Write program in python that calculates the 14-16 following:- • Area of a circle • Circumference of a circle • Area of a rectangle • Perimeter of a rectangle 13 Program to print the records in the form of 17 cooma separated values, instead of lists. 14 Program to search the record of a particular 18 student from CSV file on the inputted name. 15 . Write a program to count the number of 19 records present in “students.csv” file. 16 . Program to write data onto “student” csv file 20 using writerows[] method [modification of practical implementation-30].