C Java Kickstart Python1 Min Read LetuscrackonApril 29, 2025 Subtract Two Numbers The program must accept two numbers and subtract them. Example Input/Output 1:Input:100 40 Output:60 Example Input/Output 2:Input:50 200…
C Java Kickstart Python1 Min Read LetuscrackonApril 29, 2025 Multiply by 2 The program must accept a number and multiply it by 2. Example Input/Output 1:Input:10 Output:20 Example Input/Output 2:Input:50 Output:100…
C Java Kickstart Python1 Min Read LetuscrackonApril 28, 2025 Print Cube The program must accept a number and print it’s cube. Example Input/Output 1:Input:5 Output:125 Example Input/Output 2:Input:3 Output:27…
C Java Kickstart Python1 Min Read LetuscrackonApril 26, 2025 Print Square The program must accept a number and print it’s square. Example Input/Output 1:Input:5 Output:25 Example Input/Output 2:Input:9…
C Java Kickstart Python1 Min Read LetuscrackonJune 7, 2024 Sorted or Not Accept three integers A, B and C as the input. If A, B and C are in ascending order or in descending order then print…
C Java Kickstart Python1 Min Read LetuscrackonJune 7, 2024 Absolute Difference Multiples The program must accept two integers N1 and N2 as the input. The program must print the first 10 multiples of their…
C Java Kickstart Python1 Min Read LetuscrackonJune 7, 2024 Multiple of 30 Plus 1 or 2 The program must accept an integer N as the input. The program must print YES if N is exactly one or two more than a…
C Java Kickstart Python1 Min Read LetuscrackonJune 7, 2024 Same or Different – Characters The program must accept three characters ch1, ch2 and ch3 as the input. The program must print Same if the…
C Java Kickstart Python1 Min Read LetuscrackonJune 7, 2024 Positive or Negative Based Multiples Accept an integer A as the input. If A is a positive integer then print the first five multiples of the unit digit of A as the…
C Java Kickstart Python1 Min Read LetuscrackonJune 7, 2024 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…