C LetuscrackonFebruary 5, 2026 Reversed Sum of Pairs An array of N integers is passed as input. The program must print the sum of every two consecutive elements in the array from last. Boundary…
C Dynamic Programming LetuscrackonFebruary 5, 2026 N Queens – Fill Remaining In a N*N square chessboard, Q queens are placed in Q continuous rows so that they do not attack each other. The program must accept…
C Dynamic Programming LetuscrackonFebruary 4, 2026 Divine Divisors The program must accept N integers as the input. For each integer X among the N integers, the program must print all the…
Python LetuscrackonFebruary 4, 2026 X in Rectangular Pattern The program must accept an integer N as the input. The program must print the pattern as shown in the Example Input/Output sections. Boundary…
Python LetuscrackonFebruary 3, 2026 Convert 12 hour time to 24 hour format The time in 12 hour format is passed as an input. The program must print it in 24 hour format. Input Format:The first line contains the value…
LetuscrackonFebruary 3, 2026 Control System Interview Questions 1.What are the cooling methods to cool a transformer? Air Natural (AN) Air Forced (AF) or Air Blast Oil Natural Air Natural (ONAN) Oil Natural…
C Dynamic Programming LetuscrackonFebruary 2, 2026 Codu and Sum Love Given N number of x‘s, perform logic equivalent of the below Java code and print the output. Boundary Condition(s):1…
Python LetuscrackonFebruary 2, 2026 Check for Rectangle or Square The length L and breadth B of a rectangle is passed as input. If L is equal to B then the program must print “square”. Else it…
Java Python LetuscrackonFebruary 1, 2026 Countries Affected by Coronavirus The program must accept the names of N persons affected by the coronavirus and their country names as the input. The program must…
C LetuscrackonJanuary 31, 2026 Fibonnaci Series In Reverse Order The program must accept an integer N as the input. The program must print the fibonacci series in the reverse order as the output. Boundary…