C1 Min Read LetuscrackonJanuary 1, 2026 Check All Vowels Present The program must accept a string S. The program must print yes if all the vowels are present in S as the output. Else the program must print…
C1 Min Read LetuscrackonJanuary 1, 2026 Check Repeated Alphabets The program must accept a string value S as the input. The program must print invalid if the alphabets are repeated continuously for more than…
C1 Min Read LetuscrackonDecember 25, 2025 Strong password check Recently a security committee decided to enforce the following rules when an employee creates/changes his/her password. ->The password must…
C Java Python2 Min Read LetuscrackonDecember 13, 2025 Split & Check Prime Integers The program must accept an integer N as the input. The program must split the integer N into two parts and print them if both are prime…
Python1 Min Read LetuscrackonOctober 27, 2025 Check if Multiple of N1 and N2 The program must accept three integers N1, N2 and N3 as the input. The program must print yes if N2 is a multiple of N1 and N3 is a multiple…
Python1 Min Read LetuscrackonSeptember 25, 2025 Password Check iven a word, check if it is a valid password or not. A password is said to be valid if it satisfies the following conditions: i) Should…
C Python2 Min Read LetuscrackonSeptember 16, 2025 Integers – Check Triplets The program must accept N integers as the input. The program must print Yes if there is at least one triplet (a, b, c) in the given N integers…
C Python1 Min Read LetuscrackonAugust 5, 2025 Check Sorted Array – Descending Order The program must accept N integer values and check if they are sorted in descending order or not. Input : 5834 700 53 45 12 Output : yes Here…
C Kickstart1 Min Read LetuscrackonJune 30, 2025 Check If Tenth Digit is Odd or Even (Using if-else) The program must accept an integer N as the input. The program must print Odd if the tenth digit is odd. Else the…
C Kickstart1 Min Read LetuscrackonJune 25, 2025 Check if X is Greater than or Equal to Y (Using Ternary Operator) Accept two numbers X and Y as the input. The program must print YES if X is greater than or equal to Y. Else the…