Python LetuscrackonMarch 4, 2026 Remove the odd numbers A number N is passed as input. The program must remove all the odd digits in the passed number and display the number. If there are no…
Python LetuscrackonMarch 4, 2026 Divisible weight of a number A number N’s divisible weight is defined as the count of numbers from A1 to Ax which divide it without leaving a remainder. Input…
Python LetuscrackonMarch 3, 2026 Shift an array towards right An array with N numbers is passed as input to the program. The program must shift the values in the array to the right by one place.Then the…
Python LetuscrackonMarch 3, 2026 String Palindrome A string S is passed as input to the program. The program must print “yes” if the string S is a palindrome and must print…
Python LetuscrackonMarch 2, 2026 Convert KM/HR to M/S Speed S of a car is passed as input. It is in kilometers per hour. Write a program to convert the speed from kilometer per hour to meter per…
Python LetuscrackonMarch 2, 2026 Unique Alphabet Count A string S is passed as input to the program which has only alphabets (all alphabets in lower case). The program must print the unique count…
Python LetuscrackonMarch 1, 2026 Find the oldest age in the family A family consists of N members. Their ages are passed as input separated by a space. Write a program to find the age of the oldest member in…
C Java Python LetuscrackonMarch 1, 2026 Interlace Vowels & Consonants The program must accept a string S containing only alphabets as the input. The program must print all the vowels in the string S in…
Python LetuscrackonFebruary 28, 2026 Swap Two Numbers The values for two numbers x and y will be passed as input to the program. The program must swap the two numbers and print them as output.…
Python LetuscrackonFebruary 28, 2026 Replace Border with String The program must accept a character matrix of size RxC and a string S as the input. The program must replace the characters in the border of…