Java1 Min Read LetuscrackonJune 12, 2024 String With Most Vowels Two Strings S1 and S2 are given as input. The program must print the string with the most number of vowels. If two strings have the same…
C1 Min Read LetuscrackonJune 11, 2024 String – Reverse Vowels Given a string S, reverse only the vowels in the string S and print the resultant string R as the output. The consonants must maintain their…
Python1 Min Read LetuscrackonJune 11, 2024 String – Vowels Position Sum Accept a String S as the input. The program must print the sum of the positions of the vowels in S. If the string does not contain…
C Java Python2 Min Read LetuscrackonJune 10, 2024 Interlace Vowels & Consonants The program must accept a string S containing only alphabets as the input. The program must print all the vowels in the string S in…
C1 Min Read LetuscrackonJune 10, 2024 Character Between Two Vowels Given a string S, Print only the characters which are surrounded by vowels on both sides, if no character matches the condition print -1.…
C1 Min Read LetuscrackonJune 10, 2024 Check All Vowels Present The program must accept a string S. The program must print yes if all the vowels are present in S as the output. Else the program must print…
C1 Min Read LetuscrackonJune 9, 2024 Replace Vowels – Circular Fashion The program must accept a string S as the input. The program must replace all the vowels in S by the…