C Java Python1 Min Read LetuscrackonJune 12, 2024 Count of Digits Inverted in Their Position The program must accept an integer N as the input. The task is to count and print the number of digits in N whose position (from the rightmost…
C Java Python1 Min Read LetuscrackonJune 12, 2024 Except the Nth Position The program must accept a string value S and an integer N as the input. The program must remove the characters which are…
C Java Python2 Min Read LetuscrackonJune 12, 2024 Common Characters – Same Position The program must accept N string values are of equal length as the input. The program must print the common characters at the same position in…
C1 Min Read LetuscrackonJune 12, 2024 Reverse String – Vowels Retain Same Position Given a string S1 as the input, the program must reverse the string, keeping the vowels in the same position. Input Format:The first line…
C1 Min Read LetuscrackonJune 11, 2024 Letters at position of multiples of a number A string of length L consists of characters is passed as input to the program. A given number N is also passed as the input to the program.…
Python1 Min Read LetuscrackonJune 11, 2024 String – Vowels Position Sum Accept a String S as the input. The program must print the sum of the positions of the vowels in S. If the string does not contain…
Python1 Min Read LetuscrackonJune 11, 2024 Reverse X to Y Position Characters A string S and two integers X and Y are passed as input. The program must print the characters in the string S from position X to position Y…
C1 Min Read LetuscrackonJune 10, 2024 Even Position Characters in Reverse Order A string S is passed as input. The program must print the characters present at the even positions of the string in reverse order. Boundary…
C1 Min Read LetuscrackonJune 8, 2024 Digit In Tenth Position The program must accept a positive integer N and print the digit in the tenth position. Input Format:The first line denotes the value of…
C1 Min Read LetuscrackonJune 8, 2024 Position Digits Sum The program must accept two positive integers as the input and then print the sum of their unit digits, tenth digits and so on. Input Format:…