C Java Kickstart Python1 Min Read LetuscrackonMay 17, 2025 Canteen Expense A student has Rs.100 in hand. He buys snacks for X rupees from the canteen. The program must print the amount remaining with the student.…
C Java Kickstart Python1 Min Read LetuscrackonMay 16, 2025 Minutes to Seconds The program must accept minutes and convert into seconds. Note: 1 minute = 60 seconds Example Input/Output 1:Input:5 Output:300 Example…
C Java Kickstart Python1 Min Read LetuscrackonMay 16, 2025 Print – 1 to 222 The program must print from 1 to 222, with the numbers separated by a space. Python Java C C++
C Java Kickstart Python1 Min Read LetuscrackonMay 15, 2025 1 to 100 – Hyphen Separated The program must print from 1 to 100 with the values separated by a hyphen. Python Java C C++
C Java Kickstart Python1 Min Read LetuscrackonMay 15, 2025 One to Five – Words The program must accept a number from 1 to 5 and print it as a word as given below.1 – One2 – Two3 – Three4 – Four5…
C Java Kickstart Python1 Min Read LetuscrackonMay 14, 2025 Hot Cold or Normal The program must print Hot if the given temperature value is more than 30, must print Cold if the given value is less than…
C Java Kickstart Python1 Min Read LetuscrackonMay 14, 2025 Ten Multiples The program must accept a number and print it’s first ten multiples. Example Input/Output 1:Input:3 Output:3 6 9 12 15 18 21 24 27 30…
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…