Class-X Computer Project
Class-X Computer Project
02. Input a string and print the pair of vowels in the string.
Input: beautiful beautify;
Output: EA AU EA AU total pairs=4
03. Write a program to input a sentence and display only those words which begin
and end with the same alphabet.
04. Write a program to java to accept a sentence and a word separately. Find and
print the frequency of the given word in the sentence. Sample Input: the quick
brown fox jumps over the lazy dog frequency of the word to be searched: the
Sample Output: 2
05. A non-palindrome word can be made a palindrome word just by adding the
reverse of the word to the original word. Write a program to accept a non
-palindrome word and display the new word after making it a palindrome.
Sample Input : ICSE
Sample Output : The new word making it palindrome as: ICSEESC
06. Write a program that reads a 4 x 5 two-dimensional array and then prints the
column sums of the array along with the array printed in matrix form.
Note: Follow the Instruction given in the class for submission of the project.