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…
Java Python1 Min Read LetuscrackonMarch 25, 2025 Peak Elements Count Peak Elements Count: N integers are passed as input. The program must print the count of peak elements among the N integers. An element is a…
C Java2 Min Read LetuscrackonMarch 20, 2025 Property Inheritance in Family Property Inheritance in Family: The hierarchy of a family is given as the input. The first N lines contain the family hierarchy with each line…
Java Python1 Min Read LetuscrackonMarch 3, 2025 Smallest Product of Three Integers Smallest Product of Three Integers: The program must accept N integers as the input. The program must print the smallest value obtained by the…
Java Wipro2 Min Read LetuscrackonFebruary 22, 2025 Sort Books – Price Rating Year Title The title, ISBN, rating, price and publication year of N books are passed as the input. Then a year Y is passed as the input. The program must…
Java Wipro2 Min Read LetuscrackonFebruary 21, 2025 Integers – Maximum and Count N integers are passed as the input. The program must repeat the steps given below. Step 1: Find the maximum M of the…
Java1 Min Read LetuscrackonFebruary 21, 2025 JAVA – File Handling – Sort Students Java Program to sort the students using file Handling JAVA – File Handling – Sort Students: A list of name and marks for N…