Java Python1 Min Read LetuscrackonJune 9, 2024 Next Prime Number A number N is passed as the input. The program must print the next immediate primenumber.Input Format:The first line will contain N.Output…
C Java Python1 Min Read LetuscrackonJune 9, 2024 Arrange Alphabets – Descending Order A string S (with only LOWER case alphabets and length from 3 to 100) will be passed as input. The program should print the alphabets in the…
Java1 Min Read LetuscrackonJune 9, 2024 First Repeating Character From Last A string S is passed as the input. S has at least one repeating character. The program must print the first repeating character C from the…
C Java1 Min Read LetuscrackonJune 9, 2024 Winner of a Card Game Arun, Balaji, and Chandra are playing a card game. The points collected at the end of the game is given as input. The program must print the…
C Java Python1 Min Read LetuscrackonJune 9, 2024 Rotate String – N Positions A string S of length L is passed as the input. The program must rotate the string S by N position in forward direction and print the result as…
Java1 Min Read LetuscrackonJune 9, 2024 Alternate letters in uppercase A string S (only alphabets) is passed as input. The printed output should contain alphabets in odd positions in each word in uppercase and…
Java Python1 Min Read LetuscrackonJune 9, 2024 Count the primes in a range Two whole numbers N1 and N2 are passed as input. The program must print the number of primes present between N1 and N2 (the range is inclusive…
Java1 Min Read LetuscrackonJune 9, 2024 First Repeating Character A string S is passed as the input. S has at least one repeating character. The program must print the first repeating character C. Input…
Java Python1 Min Read LetuscrackonJune 9, 2024 Reverse String Till Underscore String S is passed as the input to the program. S may or may not have a single underscore embedded in it. The program must reverse the String…
Java1 Min Read LetuscrackonJune 9, 2024 Average Speed A single line L with a set of space separated values indicating distance travelled and time taken is passed as the input. The program must…