0% found this document useful (0 votes)
9 views

Class-X Computer Project

Uploaded by

Pritam Jana
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
9 views

Class-X Computer Project

Uploaded by

Pritam Jana
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

COMPUTER PROJECT – II CLASS X (A&B)

01. Write a program using a method Pangram(), to check whether a string is a


Pangram or not.
A Pangram is a sentence that contains every letter of the alphabet at least once.
Example: "The quick brown fox jumps over the lazy dog"

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.

You might also like