C Java Kickstart Python1 Min Read LetuscrackonJuly 19, 2025 Same Numerator or Denominator The program must accept two fractions as the input. Then the program must print yes as the output if the numerators of two fractions…
C1 Min Read LetuscrackonJuly 10, 2025 Infix to Postfix Conversion The program must accept an infix expression S and convert it to the corresponding postfix expression. Boundary…
C Java Kickstart Python1 Min Read LetuscrackonJune 2, 2025 N Integers From N The program must accept an integer N as the input. Then the program must print N integers from N as the output. Example Input/Output:Input:5…
C Java Kickstart Python1 Min Read LetuscrackonMay 22, 2025 Length of the String The program must accept a string S as the input. The program must print the length of S as the output. Boundary Condition(s):1 <=…
C Java Kickstart Python1 Min Read LetuscrackonMay 22, 2025 Sum of Two to Get Third Integer The program must accept three integers as the input. The program must print yes if any two of the three integers can be added to…
C Java Kickstart Python1 Min Read LetuscrackonMay 20, 2025 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 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…