Python1 Min Read LetuscrackonNovember 5, 2024 Print String Till Character In Python A string S is passed as the input. Character C is also passed as the input. The program must print the string value S till C is encountered.…
Python1 Min Read LetuscrackonNovember 5, 2024 Print except multiples of N Two numbers A and B are passed as input. A number N is also passed as the input. The program must print the numbers from A to B (inclusive of…
Python ZOHO1 Min Read LetuscrackonJune 12, 2024 Print 1 to N – Digits Count [ZOHO] A positive integer N is passed as the input. If we print all the numbers from 1 to N continuosly, the program must find the number of…
C Java Python3 Min Read LetuscrackonJune 12, 2024 Two Matrix Spiral Print The program must accept two square matrices which are of size N*N. Then the values in the matrices must be printed spirally in clock wise…
Python1 Min Read LetuscrackonJune 12, 2024 Print Grandson's Name The program must accept first and last names of three persons who are in a family tree and print the grandson’s name. Input Format:The…
C Java JavaScript Python6 Min Read LetuscrackonJune 11, 2024 Print February Calendar A specific year Y and the starting day of the year D is given as input. Print the February month calendar for that specific year as shown in…
Python1 Min Read LetuscrackonJune 11, 2024 Print – Only Three Digit Numbers The program must accept a string S and print only the three digit numbers in it (in the order of occurrence). The most significant digits can…
C1 Min Read LetuscrackonJune 11, 2024 Print Strings for Number A number N is passed as the input to the program. Each digit in the number represents an alphabet (a for 1, b for 2 …) based on the…
C Java Python1 Min Read LetuscrackonJune 11, 2024 Print Odd Even Negative Integer Count Accept N integers and print the count of odd, even and negative integer count as the output. Input Format:The first line contains N.The second…
Python1 Min Read LetuscrackonJune 11, 2024 Print Alphabets Given two alphabets C1 and C2 as input, the program must print the alphabets from C1 to C2 (inclusive of C1 and C2). Boundary Condition(s):a…