C Java Python2 Min Read LetuscrackonJune 12, 2024 First X Consonants The program must accept a string S and an integer X as the input. The program must print the first X consonants in the string S as the output.…
C Java Python1 Min Read LetuscrackonJune 12, 2024 Check for Increasing Order of Digits The program must accept an integer N as the input. The task is to check whether the digits in the number are in increasing order from left to…
C Java Python2 Min Read LetuscrackonJune 12, 2024 Adding a Digit to Maintain Ascending Order The program must accept a number N as input. Determine if it’s possible to add at most one digit (0-9) anywhere in the number to make…
C Java Python1 Min Read LetuscrackonJune 12, 2024 Count of Digits That Are Less Than Previous Digit The program must accept an integer N as the input. The task is to count and print the number of digits in N that are less than their immediate…
C Java Python2 Min Read LetuscrackonJune 12, 2024 Reframe with Hundredth Digit The program must accept an integer N and a sum value X (sum of unit digit, tenth digit and hundredth digit of N) as the…
C Java Python2 Min Read LetuscrackonJune 12, 2024 Combine Two Numbers by Alternating Digits The program must accept two integers A and B as the input. The task is to combine the numbers by alternating the digits. If one number runs…
C Java Python1 Min Read LetuscrackonJune 12, 2024 Average of Prime Digits The program must accept an integer N as the input. The task is to calculate the average of all the prime digits present in the number and…
C Java Python1 Min Read LetuscrackonJune 12, 2024 Check if All Digits Are Perfect Squares The program must accept an integer N as the input. The task is to check whether all the individual digits in the number are perfect squares.…
C Java Python2 Min Read LetuscrackonJune 12, 2024 Spilt Array – Equal Sum The program must accept an integer array of size N as the input. The program must print YES if it is possible to split the array…
C Java Python1 Min Read LetuscrackonJune 12, 2024 Add Square of Each Digit to the Number Given a number as the input, compute the new number by adding the square of each of its digits to the original number. If the input is not a…