Python Programming
Python is a high-level, general-purpose programming language known for its code readability and significant indentation.
PROGRAMS
ODD OR EVEN
Check whether a given number is odd or even.
PRIME NUMBER
Check if a number is prime.
FACTORIAL
Calculate the factorial of a number.
PALINDROME
Check if a string or number is a palindrome.
SUM OF N NATURAL NUMBERS
Find the sum of the first N natural numbers.
FIBONACCI SERIES
Generate the Fibonacci series up to a certain number.
REVERSE A NUMBER
Reverse the digits of an integer.
GCD OF TWO NUMBERS
Find the Greatest Common Divisor (GCD) of two numbers.
ARMSTRONG NUMBER
Check if a number is an Armstrong number.
LINEAR SEARCH
Implement the linear search algorithm.
BINARY SEARCH
Implement the binary search algorithm.
BUBBLE SORT
Sort an array using Bubble Sort.
MERGE SORT
Sort an array using Merge Sort.
INSERTION SORT
Sort an array using Insertion Sort.
QUICK SORT
Sort an array using Quick Sort.
SELECTION SORT
Sort an array using Selection Sort.
HEAP SORT
Sort an array using Heap Sort.
STACK
Implement a basic stack data structure.
QUEUE
Implement a basic queue data structure.