C Java Kickstart Python1 Min Read LetuscrackonJune 6, 2024 Middle Three Characters A string S of length 7 is passed as the input to the program. The program must print the middle three characters as the output. Example…
C Java Kickstart Python1 Min Read LetuscrackonJune 6, 2024 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 LetuscrackonJune 6, 2024 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 LetuscrackonJune 6, 2024 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 LetuscrackonJune 6, 2024 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 LetuscrackonJune 6, 2024 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 LetuscrackonJune 6, 2024 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 LetuscrackonJune 6, 2024 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 LetuscrackonJune 6, 2024 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 LetuscrackonJune 6, 2024 Print – 1 to 222 The program must print from 1 to 222, with the numbers separated by a space. Python Java C C++