Python1 Min Read LetuscrackonJune 10, 2024 Check for Rectangle or Square The length L and breadth B of a rectangle is passed as input. If L is equal to B then the program must print “square”. Else it…
C1 Min Read LetuscrackonJune 10, 2024 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 LetuscrackonJune 10, 2024 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 LetuscrackonJune 9, 2024 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 LetuscrackonJune 9, 2024 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 LetuscrackonJune 8, 2024 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 LetuscrackonJune 8, 2024 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 LetuscrackonJune 8, 2024 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 LetuscrackonJune 7, 2024 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 6, 2024 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…