3
Recently: 1. WAP to input a sting and find out there how many odd,even words.and also find how many come under the set(of,the,in). 2. WAP to take first name and last name and print the alphabets that is repeated in last name according to given conditions. 3.WAP to number of records of student and records of project aasigned to him using 2 different structures and by comparing both structure print accordingly. 1. program to sort given(n) date 2. program to print following a. * * * * b. for n=5 * *** ***** ******* * * ** ** *** *** ** ** * * ******* ***** *** * c. * *** ***** ******* * * * ** *** ** ************ ** *** ** * * * *******

Programming Importants Questions (Must Do It)

Embed Size (px)

DESCRIPTION

Programming Importants Questions (Must Do It)

Citation preview

Page 1: Programming Importants Questions (Must Do It)

Recently: 1. WAP to input a sting and find out there how many odd,even words.and also find how many come under the set(of,the,in).

2. WAP to take first name and last name and print the alphabets that is repeated in last name according to given conditions.

3.WAP to number of records of student and records of project aasigned to him using 2 different structures and by comparing both structure print accordingly.  

1. program to sort given(n) date2. program to print following    a. *         *          *           *    b. for n=5                           *                          ***                         *****                        *******                       *        *                      **        **                     ***        ***                      **        **                              *        *                        *******                         *****                          ***                           *    c.                           *                          ***                         *****                        *******                       *    *   *                      **  ***   **                     ************                      **  ***   **                              *   *    *                        *******                         *****                          ***                           *

* make above program using minimum for loop.

  3. program to find occurrence of character  in first name in last name.print wit occ.

ex     manishekhar singh     

Page 2: Programming Importants Questions (Must Do It)

o/p m0a0n1i1s1h1e0k0har0

 4. Reverse the each word in sentence...      my name is ...output      ym eman si ...

 5. Exchange the alternate char from ends.    abcdefg o/p     afcdebg 6. Print currency in words.   1111   one thousand one hundred eleven   7. Palindrome  8. Replace the vowels with * char.     Example :        Maventic     O/P: M*v*nt*c 9. Swap the first char with last one       Ex . Maventic     O/p:  caventiM 10. Replace a single char with their occurrence.      Ex. BanaNa      O/p BaaannaaaNNaaa 11. Compare two strings without using built in function. 12. Email verification. 13. Write a program to illustrate link list. Duplicate node not allowed. 14. Design a database with three tables student, mentor and project.       your program should automatically assign mentor and project to a student.       and Display all record by any detail belonging to those tables. 15. Coliondrome          * First three char are followed by reverse order of itself.         * The sequence continues.       Ex. collocmonnom             paccap 16. String copy for n length string. Dynamic allocation (maloc,free etc.). Other built in function for string is not allowed.

 etc.