Python1 Min Read LetuscrackonNovember 28, 2024 Check Sorted Order The program must accept N integers which are sorted in ascending order except one integer. But if that single integer R is…
Python1 Min Read LetuscrackonNovember 27, 2024 Python Program To Check Subsequence Of Two Strings The program must accept two string values S1 and S2 as the input. The program must print Found if S2 is a subsequence of S1. Else the program…
C Java Python1 Min Read LetuscrackonJune 12, 2024 Check Palindrome Nature of a Number The program must accept an integer N as the input. The task is to check whether the number is a palindrome. If the number is a palindrome, the…
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 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.…
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…