C1 Min Read LetuscrackonJune 8, 2024 Reverse Order – print N to 1 A number N is passed as the input. The program must print the numbers from N to 1 (inclusive of N). Input Format: The first line denotes the…
Python1 Min Read LetuscrackonJune 8, 2024 Print Calendar Month in Words The program must accept an integer value N and print the corresponding calendar month in words. 1 – January, 2 – February, …. , 11…
C1 Min Read LetuscrackonJune 7, 2024 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 LetuscrackonJune 7, 2024 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 LetuscrackonJune 7, 2024 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 LetuscrackonJune 7, 2024 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 LetuscrackonJune 7, 2024 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 LetuscrackonJune 7, 2024 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 LetuscrackonJune 7, 2024 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 LetuscrackonJune 7, 2024 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…