C Java Kickstart Python1 Min Read LetuscrackonMay 13, 2025 Division – Two Values The program must accept two numbers and print the value (up to two decimal places) when they are divided. Example Input/Output…
C Java Kickstart Python1 Min Read LetuscrackonMay 13, 2025 Sum – Format Print The program must print the sum of two numbers as per the format given in the Example Input/Output Section. Example Input/Output 1:Input:5 20…
C Java Kickstart Python1 Min Read LetuscrackonMay 12, 2025 Average – Two Numbers The program must accept two numbers and print their average (up to two decimal places). Example Input/Output 1:Input:10 4 Output:7.00 Example…
C Java Kickstart Python1 Min Read LetuscrackonMay 12, 2025 Mobile Signal The program must accept a character representing the mobile signal .– If the character is E, print 2G–…
C Java Kickstart Python1 Min Read LetuscrackonMay 11, 2025 Two Subjects – pass or fail The pass mark in a subject is 40. The marks scored in two subjects by a student is passed as the input. If the student has passed in both the…
C Java Kickstart Python1 Min Read LetuscrackonMay 11, 2025 Multiply Two Numbers Accept two numbers and print their product. Example Input/Output 1:Input:10 5 Output:50 Example Input/Output 2:Input:6 5 Output:30 Python Java C C++
C Java Kickstart Python1 Min Read LetuscrackonMay 10, 2025 Print – 111 to 2 The program must print from 111 to 2 with the values separated by a space. Python Java C C++
C Java Kickstart Python1 Min Read LetuscrackonMay 10, 2025 Not Equal to Zero The program must accept a number and print yes if it is NOT equal to zero. Else it must print no. Example Input/Output 1:Input:0 Output:no…
C Java Kickstart Python1 Min Read LetuscrackonMay 9, 2025 Smallest of Two Numbers The program must accept two numbers and print the smallest number. Example Input/Output 1:Input:14 23 Output:14 Example Input/Output 2:Input:5…
C Java Kickstart Python1 Min Read LetuscrackonMay 9, 2025 Remove Unit Digit The program must accept a number and remove the unit digit. Note: The number is greater than 9. Example Input/Output 1:Input:102 Output:10…