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…
C Java Kickstart Python1 Min Read LetuscrackonMay 8, 2025 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…
C Java Kickstart Python1 Min Read LetuscrackonMay 8, 2025 Odd or Even The program must print if the given number is Odd or Even. Example Input/Output 1:Input:5 Output:Odd Example Input/Output…
C Java Kickstart Python1 Min Read LetuscrackonMay 7, 2025 Pass or Fail The program must accept a mark and print if it is pass or fail. The pass mark is 40. Example Input/Output 1:Input:40 Output:pass Example…
C Java Kickstart Python1 Min Read LetuscrackonMay 7, 2025 Character – Male or Female The program must accept a character.– If the character is m, print male– If the character is f, print female…
C Java Kickstart Python1 Min Read LetuscrackonMay 6, 2025 Print Unit Digit The program must accept a number and print its unit digit. Example Input/Output 1:Input:72 Output:2 Example Input/Output 2:Input:65 Output:5…
C Java Kickstart Python1 Min Read LetuscrackonMay 6, 2025 Multiply Three Numbers Accept three numbers and print their product. Example Input/Output 1:Input:2 5 10 Output:100 Example Input/Output 2:Input:6 3 7 Output:126…
C Java Kickstart Python1 Min Read LetuscrackonMay 5, 2025 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…