Python LetuscrackonOctober 2, 2025 Mean, Median, and Mode Given an array, X, of N integers, calculate and print the respective mean, median, and mode on separate lines. If your array contains more…
Python LetuscrackonOctober 2, 2025 Add Numbers – Base N Two numbers X and Y are provided with reference to base N. Add the numbers and print their sum with reference to base 10. Input Format: First…
Python LetuscrackonOctober 1, 2025 Find the digital sum A number N is passed as an input to the program. The program must print the digital sum of the number. Note: The digital sum of a number is…
C LetuscrackonOctober 1, 2025 Concatenate Strings Alphabetically Two string values S1 and S2 are passed as the input. The program must concatenate them depending on which string comes first in the…
C Java Python LetuscrackonSeptember 30, 2025 Fibonacci Sum – N Integers The program must accept N integers as the input. The program must find the integers which are present in the Fibonacci series. Then the…
Python LetuscrackonSeptember 30, 2025 Distinct Letters Write an algorithm and the subsequent Python code to check if the given word is good or bad.: e.g. START, GOOD, BETTER are bad: WRONG is…
Python LetuscrackonSeptember 29, 2025 Keyboard Letters Given an English word, write an algorithm and the subsequent Python code to check if the given word can be typed using just a…
C LetuscrackonSeptember 28, 2025 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…