C Java Kickstart Python1 Min Read LetuscrackonJune 6, 2024 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 LetuscrackonJune 6, 2024 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 LetuscrackonJune 6, 2024 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 LetuscrackonJune 6, 2024 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 LetuscrackonJune 6, 2024 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 LetuscrackonJune 6, 2024 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 LetuscrackonJune 6, 2024 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 LetuscrackonJune 6, 2024 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 LetuscrackonJune 6, 2024 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…
C Java Kickstart Python1 Min Read LetuscrackonJune 5, 2024 Atleast One Number 100 The numbers are passed as the input to the program. If at least one of the numbers is equal to 100, the program must print yes. Else the…