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…
Python1 Min Read LetuscrackonSeptember 1, 2025 Print Odd or Even The program must accept an integer N as the input. The program must print Odd if N is odd. Else the program must…
Python1 Min Read LetuscrackonAugust 28, 2025 Print 2N and 4N The program must accept an integer N as the input. The program must print 2N and 4N as the output. Please fill…
Python1 Min Read LetuscrackonAugust 27, 2025 File Handling – Read and Print Strings The program must accept a string S denoting the filename as the input. The program must read all the content from the file S and…
Python1 Min Read LetuscrackonAugust 21, 2025 Sort Matrix & Print Positions Sort Matrix & Print PositionsThe program must accept an integer matrix of size R*C containing only unique integers as the input.…
Python1 Min Read LetuscrackonAugust 13, 2025 File Handling – Print First Two Lines The program must accept a string S denoting the filename as the input. The program must read the content from the file and print the…
Python1 Min Read LetuscrackonJuly 9, 2025 Print Vowels and Consonants The program must accept a string value S as the input. The program must print the vowels in S and then print the…
Python2 Min Read LetuscrackonJuly 6, 2025 Print Holidays – Monthly Calendar Print Holidays – Monthly Calendar: The program must accept a matrix representing the month of a calender year. The size of the matrix…
C Kickstart1 Min Read LetuscrackonJune 22, 2025 Print Odd or Even (Using if-else) The program must accept an integer N as the input. The program must print Odd if N is odd. Else the program must…
C Kickstart1 Min Read LetuscrackonJune 22, 2025 Print the Larger of Two Numbers (Using if-else) Accept two integers X and Y as the input. The program must print the larger integer as the output. Example…