C Java Kickstart Python1 Min Read LetuscrackonMay 20, 2025 Odd Even Mixed Accept two integers A and B as the input. – If A and B are even then print “EVEN” as the…
C Java Kickstart Python1 Min Read LetuscrackonMay 19, 2025 Century or Half-Century The runs scored by a batsman is passed as the input. The program must print if he has scored a Century or Half-Century. Note: If the runs is…
C Java Kickstart Python1 Min Read LetuscrackonMay 19, 2025 Square – Format Print The program must print a number and print the square as per the format given in the Example Input/Output Section. Example Input/Output…
C Java Kickstart Python1 Min Read LetuscrackonMay 18, 2025 Print Last Four Digits The program must accept an integer N as the input. The program must print the last four digits in N as the output. Example…
C Java Kickstart Python1 Min Read LetuscrackonMay 18, 2025 Discount – 20% The program must accept the price of an item as the input. The program must print the price of the item after 20 percent discount with the…
C Java Kickstart Python1 Min Read LetuscrackonMay 17, 2025 String – Print Twice The program must accept a string value and print it twice. Example Input/Output 1:Input:Letuscrack Output:LetuscrackLetuscrack Python Java C C++
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++