The document contains 6 algorithms for solving different programming problems: 1. A program to check if a number is prime or not using a while loop. 2. A program to check if a number is a Krishnamurty number using factorial calculations in a while loop. 3. A recursive function to generate the Fibonacci series. 4. A program to print an array in reverse order using a for loop. 5. A program to merge two sorted arrays into a single sorted array using a while loop. 6. A program to check if a string is a palindrome without built-in functions by reversing the string and comparing the original and reversed strings.