Python1 Min Read LetuscrackonMarch 6, 2026 Print Nth term in A.P The first two terms (a1, a2) of a strictly increasing arithmetic progression (A.P) are passed as input. The program must print the Nth term…
Python1 Min Read LetuscrackonFebruary 24, 2026 Print Numbers – Frequency Based An array of N positive integers is passed as input. The program must print the numbers in the array based on the frequency of their…
C1 Min Read LetuscrackonFebruary 13, 2026 C – Function Pointer – Print OddEven Three integers A, B and C are passed as input. If A is 0 the program must print the odd numbers from B to C. If A is 1 the program must print…
C1 Min Read LetuscrackonFebruary 7, 2026 Matrix Print Excluding Border elements A matrix of size N*N is passed as input. The program must print the matrix excluding the elements present at the border of the matrix.…
Python1 Min Read LetuscrackonJanuary 28, 2026 Print Xth Digit from Last Two integers N and X are given as input. The program must print the Xth digit of N from last. Boundary Condition(s):1 <= N <= 9999999991…
C Java Python2 Min Read LetuscrackonJanuary 28, 2026 Print Date Format The program must accept a valid date D in any format as the input. The day DD, the month MM or MMM and the…
Python1 Min Read LetuscrackonJanuary 27, 2026 String – Print till char A string S is passed as input along with a character C. The program must print the string value S till C is reached. Input Format:The first…
C1 Min Read LetuscrackonNovember 12, 2025 Reverse Order – print N to 1 A number N is passed as the input. The program must print the numbers from N to 1 (inclusive of N). Input Format: The first line denotes the…
Python1 Min Read LetuscrackonNovember 9, 2025 Print Calendar Month in Words The program must accept an integer value N and print the corresponding calendar month in words. 1 – January, 2 – February, …. , 11…
C1 Min Read LetuscrackonSeptember 1, 2025 Print Digits – X and Y The program must accept two integers X and Y as the input. The program must print all the digits from the unit digit of X…