Python1 Min Read LetuscrackonJune 11, 2024 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 LetuscrackonJune 11, 2024 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…
LetuscrackonJune 11, 2024 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 LetuscrackonJune 10, 2024 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 LetuscrackonJune 10, 2024 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 LetuscrackonJune 10, 2024 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 LetuscrackonJune 10, 2024 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 LetuscrackonJune 10, 2024 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 LetuscrackonJune 10, 2024 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 LetuscrackonJune 10, 2024 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…