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
1.
WAP to find the largest element from a list
(Elements of the list should be taken from the user) without using built-in function. 2. WAP to calculate mean of numeric values stored in a list. 3. WAP to implement Linear Search on a list of numbers. 4. WAP to count the frequency of an element in a list. 5. WAP to input a list of numbers and swap elements at the even location with the elements at the odd location. 6. WAP to find the minimum (smallest) element from a tuple (Elements of the tuple should be taken from the user) without using built-in function. 7. WAP to input any two tuples and swap their values and print these two tuples. 8. Create a dictionary with the roll number, name and marks of n students in a class and display the names of students who have scored marks above 75. 9. WAP to count the number of times a character appears in a given string using dictionary. 10. WAP to input details of n employees (empname, salary-basic,hra) and calculate total salary of each employee and display. 11. WAP to display square root of a number using math module. 12. WAP to select a random subject from a list of subjects.