Python1 Min Read LetuscrackonApril 14, 2026 Print Grandfather's Name The program must accept first and last names of three persons who are in a family tree and print the grandfather’s name. Input Format:…
Python1 Min Read LetuscrackonApril 13, 2026 Print Soap Name The following are the soap code characters for the soaps.C or c – CintholD or d – DoveL or l – LuxP or p – PearsH or h…
C Java Python2 Min Read LetuscrackonApril 1, 2026 Search Substring & Print Words The program must accept a space-separated string S and N string values as the input. For each string X among the…
LetuscrackonMarch 26, 2026 Print "Hello world" in different languages Here is a selection of programming languages that have a place in the programming hall of fame. They’re all either used today…
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…