C Python LetuscrackonMarch 6, 2026 Left Number Twice Right A set of N numbers (separated by one or more spaces) is passed as input to the program. The program must identify the count of…
Python LetuscrackonMarch 6, 2026 Print Nth term in A.P The first two terms (a1, a2) of a strictly increasing arithmetic progression (A.P) are passed as input. The program must print the Nth term…
Java LetuscrackonMarch 5, 2026 JAVA – Constructor – Sum and Product The main method in Hello.java is as shown below. Define the class Calculator.java by filling in the code so that the…
Python LetuscrackonMarch 5, 2026 Anagrams Count Two strings S1, S2 are passed as input to the program. The program must print the count of anagrams present in both the strings. Out of each…
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…