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…
C Kickstart1 Min Read LetuscrackonJune 21, 2025 Print YES or NO (Using Logical AND) Accept a number X as the input. The program must print YES if it is greater than 3 and less than 10. Else…
C Java Kickstart Python1 Min Read LetuscrackonMay 19, 2025 Square – Format Print The program must print a number and print the square as per the format given in the Example Input/Output Section. Example Input/Output…
C Java Kickstart Python1 Min Read LetuscrackonMay 18, 2025 Print Last Four Digits The program must accept an integer N as the input. The program must print the last four digits in N as the output. Example…
C Java Kickstart Python1 Min Read LetuscrackonMay 17, 2025 String – Print Twice The program must accept a string value and print it twice. Example Input/Output 1:Input:Letuscrack Output:LetuscrackLetuscrack Python Java C C++