C1 Min Read LetuscrackonJune 8, 2024 Digit In Tenth Position The program must accept a positive integer N and print the digit in the tenth position. Input Format:The first line denotes the value of…
C1 Min Read LetuscrackonJune 8, 2024 Nature of Digit in Position Given a number ‘n’ and a position; Write an algorithm and subsequent ‘C’ program to Check if the ‘p-th’ Digit, Starting from left-most digiit…
C1 Min Read LetuscrackonJune 7, 2024 Matrix Unit Digit Swap The program must accept an integer matrix of size R*C, where C is even and swap the unit digits of the elements in columns 1 and 2, then 3 and…
Python1 Min Read LetuscrackonJune 7, 2024 Find Power – First Digit & Last Digit The program must accept an integer N as the input. The program must print the value of the first digit raised to the power of the…
C Kickstart1 Min Read LetuscrackonJune 6, 2024 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 6, 2024 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 LetuscrackonJune 6, 2024 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 LetuscrackonJune 6, 2024 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 LetuscrackonJune 5, 2024 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…