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…
C Kickstart1 Min Read LetuscrackonJune 23, 2025 Check if X is Less than Y (Boolean) Accept two integers X and Y as input. The program must print 1 if X is less than Y. Else…
C Kickstart1 Min Read LetuscrackonJune 23, 2025 Check If Two Integers are Equal (Using if-else) The program must accept two integers X and Y as the input. The program must print Equal if X and Y are equal.…
C Kickstart1 Min Read LetuscrackonJune 17, 2025 Check if X is Less 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 less than or equal to Y. Else the…
Python1 Min Read LetuscrackonApril 1, 2025 Check if 2 or 3 Digit Number Check if 2 or 3 Digit Number: Given an integer N as input, the program must print YES if the given integer N is a two digit or a…