Reverse given string eg. i/p: “pune” o/p: “enup”
Given a string and character return number of that target character present in the string.
Given a string and character remove all occurrences of that character from that string.
Given an Array, return reversed array.
Given an Array, find the second largest number in the array and return it.
Given two arrays calculate the sum of their elements and return the max sum.
Given a number, return its factorial.
Write a program to check whether a given string is palindrome or not.
Write a program to check if a vowel is present in a given string or not.
Given a string toggle the characters in the given string. ( ex. If I/P: PuNe then O/P: pUnE )
Swap two numbers without using a third variable.
Write a program to print prime numbers from 1 to 100.
Write a program to print armstrong numbers from 1 to 500.
Write a program to return a number which has the maximum number of digits, among given three numbers.
Given a number and digit return how many times that digit has occurred in that number.
Check if two strings are anagrams or not.