Python LetuscrackonMarch 20, 2026 Area of a square The perimeter P of a square is passed as the input. The program must print the area of the square. Input Format:The first line denotes the…
C LetuscrackonMarch 20, 2026 Maximum Sum in Array – M out of N Given N positive integers, find the maximum sum S that can be obtained by adding exactly M out of the N integers. The program must print the…
Python LetuscrackonMarch 19, 2026 Sum divisible by D Two numbers A and B are passed as input. The program must print yes if the sum of these two numbers A and B is divisible by a third number D.…
C LetuscrackonMarch 18, 2026 Minimum Difference – Mark Pairs Manisha and Ranjani are in the same class and are friends. All students in the class write N exams. In order to motivate the students, the…
Java LetuscrackonMarch 18, 2026 JAVA – Method Overloading – Adder The main method class Hello.java is given below. Please write the code for the class Adder.java so that the program prints…
C LetuscrackonMarch 17, 2026 Missing Number In Sequence A set of numbers which are in sequence are arranged in descending order as a string S. But one of the number in the sequence is missing in…
Python LetuscrackonMarch 17, 2026 First M multiples of N The number N is passed as input. The program must print the first M multiples of the number Input Format:The first line denotes the value of…
C LetuscrackonMarch 16, 2026 Array Reverse In Groups of M An array of N integers is passed as the input to the program and the program must reverse the elements in groups of size M.If the last group…
C LetuscrackonMarch 16, 2026 Complete Cell State After D Days There is a colony of 8 cells arranged in a straight line where each day every cell competes with its adjacent cells(neighbours). Each day, for…
C LetuscrackonMarch 15, 2026 Find the lowest average temperature for N days The temperature recorded in a city in a week will be passed as input. The program must print the lowest average temperature for any 3…