C Kickstart1 Min Read LetuscrackonJune 21, 2025 Print YES or NO (Using Logical AND) Accept a number X as the input. The program must print YES if it is greater than 3 and less than 10. Else…
C Kickstart1 Min Read LetuscrackonJune 21, 2025 Find Hundredth Digit The program must accept an integer N as the input. The program must print the hundredth digit of N as the output. Boundary…
C Kickstart1 Min Read LetuscrackonJune 20, 2025 Area of Circle The program must accept the radius R of a circle as the input. The program must print the area of the circle with precision…
C Kickstart1 Min Read LetuscrackonJune 19, 2025 Smaller of Two Numbers (Using Ternary Operator) Accept two numbers X and Y as input. The program must print the smaller of two numbers as the output using ternary…
C Kickstart1 Min Read LetuscrackonJune 17, 2025 Check if X is Less than or Equal to Y (Using Ternary Operator) Accept two numbers X and Y as the input. The program must print YES if X is less than or equal to Y. Else the…
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…