Python1 Min Read LetuscrackonApril 1, 2026 Product of Current and Next Elements Given an array of integers of size N as input, the program must print the product of current element and next element if the current element…
Python1 Min Read LetuscrackonMarch 30, 2026 Product of Three Integers Given three integers A, B and C as input, the program must print the product of the three integers. Boundary Condition(s):0 <= A, B, C…
Java1 Min Read LetuscrackonMarch 5, 2026 JAVA – Constructor – Sum and Product The main method in Hello.java is as shown below. Define the class Calculator.java by filling in the code so that the…
C1 Min Read LetuscrackonJanuary 3, 2026 Product – Swap Unit Digits The program must accept two integers X and Y as the input. The program must print the product of X and Y after swapping their unit digits as…
C Python1 Min Read LetuscrackonNovember 23, 2025 Array product except index value An array of N integers with non-zero values is passed as the input to the program. The program must print another array of size N where value…
C Java Python1 Min Read LetuscrackonOctober 15, 2025 Maximum Value – Add or Product The program must accept N integers as the input. For each integer X among the given N integers, the program must print the…
C Python1 Min Read LetuscrackonAugust 12, 2025 Sum & Product of Digits in N The program must accept an integer N as the input. The program must find the sum of digits S and the product of digits P in N. Then the…
Python1 Min Read LetuscrackonJuly 11, 2025 Product – First Largest and Second Largest The program must accept an integer N as the input. The program must print the product of the first largest digit and the second…
Python2 Min Read LetuscrackonJune 12, 2025 Zig-Zag Product Row Zig-Zag Product Row: The program must accept an integer matrix of size R*C and two integers X, Y as the input. The…
Java Python1 Min Read LetuscrackonMarch 3, 2025 Smallest Product of Three Integers Smallest Product of Three Integers: The program must accept N integers as the input. The program must print the smallest value obtained by the…