Convert number to word
Write a program to convert number to word For example:467Four hundred sixty seven 2321Two thousand three hundred twenty one Solution: Continue reading Convert number to word
Write a program to convert number to word For example:467Four hundred sixty seven 2321Two thousand three hundred twenty one Solution: Continue reading Convert number to word
Get all prime number for the given number using Sieve of Eratosthenes algorithm For example: Input8 Output2, 3, 5, 7 Solution: Continue reading Sieve of Eratosthenes
Write a program to get the prime factor of given number. for example: Solution: Continue reading Prime factors of integer
Three numbers can be said as Pythagorean Triplet when a>b>c and a2 + b2 = c2. Write a program to determine the given numbers set of Pythagorean Triplet Solution: Continue reading Given number are Pythagorean Triplet
Equilibrium index is an index when the sum of elements at lower indexes is equal to the sum of elements at higher indexes. Write a program to find Equilibrium index of an array. For example: Solution: Continue reading Equilibrium index of an array
Write a program to accept the list of strings and prints them, one per line, in a rectangular frame. For example: Solution: Continue reading Print a rectangular frame around array values
Write a program to accept the number and returns a list of its digits. For example Solution: Continue reading Number to integer array
Write a program to demonstrate stooge sort algorithm. Solution: Continue reading Stooge Sort
Write a programme to demonstrated Priority Queue using Heap Solution: Continue reading Priority Queue using Heap
Write a program to reversing a queue element Solution: Continue reading Reversing a Queue
Write a program to demonstrate First In First Out(FIFO) approach. Solution: Continue reading First In First Out(FIFO) Implementation
Write a program to reverse a word using stack For example Solution Continue reading Reverse a word using Stack
Write a program to demonstrate stack Implementation using Queue. Solution: Continue reading Implement Stack using Queue
Write a program to demonstrate stack Implementation using an Array. Solution: Continue reading Implement Stack using an Array
Write a program to delete an element from a stack. Solution Continue reading Delete element from stack
Write a program to Sort a stack Solution: Continue reading Sort stack
Write a program to Sort a stack using recursion Solution: Continue reading Sort a stack using recursion
Write a program to reverse stack. For example Solution Continue reading Reverse Stack Implementation
Write a program to demonstrate stack Implementation using Linked List. Solution: Continue reading Stack Implementation using Linked List
Give a html string get only url from given string For example Solution Continue reading URL from HTML string.
Two strings can be pair if meets blow criteria• The first string’s first letter = second string’s last letter.• The first string’s last letter = second string’s first letter.Write a program to check if two string can be pair For example Solution: Continue reading String Strange Pair
Compound interest is the addition of interest to the principal sum of a loan or deposit, or in other words, interest on interest. Write a program to Calculates Compound Interest. Solution: Continue reading Compound Interest
Write a program to convert Hexadecimal Number to Decimal For example Solution: Continue reading Hexadecimal Number to Decimal
Write a program to search node in a Binary Tree Solution Continue reading Search in node in binary tree
Write a program to demonstrate deletion node from Binary Search Tree Solution Continue reading Delete Binary Search Tree Node.