C Java Python1 Min Read LetuscrackonJune 9, 2024 Arrange Alphabets – Descending Order A string S (with only LOWER case alphabets and length from 3 to 100) will be passed as input. The program should print the alphabets in the…
C Java Python1 Min Read LetuscrackonJune 8, 2024 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…
Python1 Min Read LetuscrackonJune 8, 2024 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…
Cognizant Python1 Min Read LetuscrackonJune 6, 2024 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 Java Kickstart Python1 Min Read LetuscrackonJune 5, 2024 Add Three Numbers Accept three numbers and print their sum. Example Input/Output 1:Input:5 2 4 Output:11 Example Input/Output 2:Input:25 15 10 Output:50 Python…
C Java Kickstart Python1 Min Read LetuscrackonJune 5, 2024 Add Two Numbers Accept two numbers and print their sum. Example Input/Output 1:Input:10 20 Output:30 Example Input/Output 2:Input:137 11 Output:148 Python Java C C++