Aim: To write a Python program to multiply matrices. Algorithm: 1. Define two matrices X and Y 2. …
Explore more »Aim: To write a Python program to find first n prime numbers. Algorithm: 1. Read the value of n 2.…
Explore more »Aim: To write a Python Program to perform Merge sort. Algorithm: 1. Create a function named merges…
Explore more »Aim: To write a Python Program to perform insertion sort. Algorithm: 1. Create a function named in…
Explore more »Aim: To write a Python Program to perform selection sort. Algorithm: 1. Create a function named se…
Explore more »Aim: To write a Python Program to perform binary search. Algorithm: 1. Read the search element 2.…
Explore more »Aim: To write a Python Program to perform Linear Search Algorithm: 1. Read n elements into the lis…
Explore more »Aim: To write a Python Program to find the maximum from a list of numbers. Algorithm: 1. Create a…
Explore more »Aim: To write a Python program to find the exponentiation of a number. Algorithm: 1. Define a fun…
Explore more »Aim: To write a Python Program to find the square root of a number by Newton’s Method. Algorithm: …
Explore more »Aim: To write a Python program to find GCD of two numbers. Algorithm: 1. Define a function named c…
Explore more »