C Python1 Min Read LetuscrackonAugust 10, 2025 N Integers – Kth Largest Integer The program must accept N integers and an integer K as the input. The program must print the Kth largest integer among the N integers as the…
C Python1 Min Read LetuscrackonAugust 7, 2025 Integers – Equal to Index The program must accept N integers and print the integers which are equal to their index value as the output. If there is no such integer, the…
Python1 Min Read LetuscrackonAugust 1, 2025 K-digit Integers – Xth Smallest The program must accept a list of N unique integers and two integers K, X as the input. The program must print…
Python1 Min Read LetuscrackonJuly 28, 2025 Two Integers Plus or Minus The program must accept two integers A,B separated by a string S (whose value is plus or minus). Based on the string value S, the program must…
Python1 Min Read LetuscrackonJuly 15, 2025 Sum – Integers having at least one D The program must accept N integers and a digit D as the input. The program must print the sum S of integers…
Cognizant Python1 Min Read LetuscrackonJuly 1, 2025 Function add – Two or more Integers Function add – Two or more Integers: The program must accept five integers a, b, c, d and e as the…
C Kickstart1 Min Read LetuscrackonJune 28, 2025 Compare Two integers with Logical NOT and AND Operators (Boolean ) Accept two integers X and Y as the input. The program must print 1 if X and Y are not equal and also Xis greater…
C Kickstart1 Min Read LetuscrackonJune 23, 2025 Check If Two Integers are Equal (Using if-else) The program must accept two integers X and Y as the input. The program must print Equal if X and Y are equal.…
Python1 Min Read LetuscrackonJune 15, 2025 Toggle Format – List of Integers Toggle Format – List of Integers: The program must accept a list of integers as the input. The program must print the output based on…
C Java Kickstart Python1 Min Read LetuscrackonJune 2, 2025 N Integers From N The program must accept an integer N as the input. Then the program must print N integers from N as the output. Example Input/Output:Input:5…