C Kickstart1 Min Read LetuscrackonJune 30, 2025 Check If Tenth Digit is Odd or Even (Using if-else) The program must accept an integer N as the input. The program must print Odd if the tenth digit is odd. Else the…
C Kickstart1 Min Read LetuscrackonJune 21, 2025 Find Hundredth Digit The program must accept an integer N as the input. The program must print the hundredth digit of N as the output. Boundary…
Python1 Min Read LetuscrackonMay 25, 2025 Submatrix – Unit Digit Corner Submatrix – Unit Digit Corner: The program must accept an integer matrix of size R*C and a digit D as the input. The…
C Java Kickstart Python1 Min Read LetuscrackonMay 9, 2025 Remove Unit Digit The program must accept a number and remove the unit digit. Note: The number is greater than 9. Example Input/Output 1:Input:102 Output:10…
C Java Kickstart Python1 Min Read LetuscrackonMay 6, 2025 Print Unit Digit The program must accept a number and print its unit digit. Example Input/Output 1:Input:72 Output:2 Example Input/Output 2:Input:65 Output:5…
C Python TCS CodeVita2 Min Read LetuscrackonApril 18, 2025 Digit Pairs – TCS CodeVita The program must accept N three-digit numbers as the input. The program must find the bit score for all N numbers and then print the…
Python1 Min Read LetuscrackonApril 1, 2025 Check if 2 or 3 Digit Number Check if 2 or 3 Digit Number: Given an integer N as input, the program must print YES if the given integer N is a two digit or a…
Python1 Min Read LetuscrackonMarch 31, 2025 Four Digit Integers Divisible Four Digit Integers Divisible: The program must accept a string S containing only digits and an integer K as the input.…
Python1 Min Read LetuscrackonMarch 27, 2025 Unit Digit from 1 to 5 Unit Digit from 1 to 5: Given an integer N as input, the program must print YES if the unit digit is from 1 to 5. Else the program…
Python1 Min Read LetuscrackonMarch 26, 2025 Largest of Tenth Digit and Unit Digit Largest of Tenth Digit and Unit Digit: Given an integer N as input, the program must print the largest of the tenth digit and the unit…