Pages
(Move to ...)
Home
Computer Science
Maths
Pedagogy and Teaching Methodology
GK and Current Affair
English
Our Apps
Books
Notification
▼
CLICK HERE TO JOIN US
Download and Install our Android App
Wednesday, 14 February 2024
Class 11 CS Practical - 46
›
46 - Write a program in Python to input the value of x and n and print the sum of the following series: x + x 2 /2! + x 3 /3! + x 4 /4! + ...
Class 11 CS Practical - 45
›
45 - Write a program in Python to input the value of x and n and print the sum of the following series: x + x 2 /2 + x 3 /3 + x 4 /4 + ---...
Class 11 CS Practical - 44
›
44 - Write a program in Python to input the value of x and n and print the sum of the following series: 1 - x + x 2 - x 3 +x 4 + ------...
Class 11 CS Practical - 43
›
43 - Write a program in Python to input the value of x and n and print the sum of the following series: 1 + x + x 2 + x 3 +x 4 + -------...
Class 11 CS Practical - 42
›
42 - Write a program in Python to create a list of 10 random numbers between 1 to 100. import random as r L=[] for i in range(0,10):...
Class 11 CS Practical - 41
›
41 - Write a program in Python to input a list of numbers and find the mean, mode and median. import statistics as s L=[] n=int(inp...
Class 11 CS Practical - 40
›
40 - Write a program in Python to create a dictionary with the roll number, name and marks of n students of a class and display the name of ...
Class 11 CS Practical - 37
›
37 - Write a program in Python to Input a list of numbers and swap elements at the even location with the elements at the odd location. ...
Class 11 CS Practical - 38
›
38 - Write a program in Python to Input a list of numbers and find the index of a specific element. L= [10, 20, 30, 40, 50] print(...
Class 11 CS Practical - 39
›
39 - Write a program in Python to Input a tuple of numbers and find the index of a specific element. T= (5, 8, 9, 2, 6) print("Tup...
‹
›
Home
View web version