FE CP
Chapter wise Question bank: Click here
1. Computer Programming Syllabus
Steps for How to execute the program in ubuntu ?
***Chapter wise Oral question bank
new **** Question bank for UT 2
Programs.
1. Program to print the name of the student on the screen using C language.
2. Program for printing the name and address of a student on the screen using C language.
3. Program for addition of two numbers by accepting the numbers from the program using C language.
4.Program for addition of two numbers by accepting the numbers from user.
5. Program for addition of two numbers by accepting the numbers from user using single scanf function.
6. Program for understanding different data types.
7. Program for understanding getchar() & putchar()
8. WAP to check whether the number is even or odd using only if statement.
9. WAP to check whether the number is even or odd using only if & else statement.
10. WAP for calculating class of students by accepting marks of 5 subjects using if only.
11. WAP for calculating class of students by accepting marks of 5 subjects using if & else statements.
12. WAP to identify the given character is vowel or not using if statement.
13. WAP to find & display greatest number out of three given numbers.
14. WAP to decide & print the entered year is leap year or not.
15. WAP to print even numbers between 1 to 100 using for loop.
16. WAP to print odd numbers from 527 to 613 using for loop.
17. WAP to print following pattern.
*****
****
***
**
*
18. WAP to print numbers from 27 to 54 using while loop
19. WAP to print numbers from 0 to 5 using do while loop.
20. WAP to perform addition, subtraction, multiplication & division using switch case statement.
21. WAP to print area of circle, triangle, rectangle,square using switch case statement.
1. Computer Programming Syllabus
Steps for How to execute the program in ubuntu ?
Notes
***Chapter wise Oral question bank
new **** Question bank for UT 2
Programs.
1. Program to print the name of the student on the screen using C language.
2. Program for printing the name and address of a student on the screen using C language.
3. Program for addition of two numbers by accepting the numbers from the program using C language.
4.Program for addition of two numbers by accepting the numbers from user.
5. Program for addition of two numbers by accepting the numbers from user using single scanf function.
6. Program for understanding different data types.
7. Program for understanding getchar() & putchar()
8. WAP to check whether the number is even or odd using only if statement.
9. WAP to check whether the number is even or odd using only if & else statement.
10. WAP for calculating class of students by accepting marks of 5 subjects using if only.
11. WAP for calculating class of students by accepting marks of 5 subjects using if & else statements.
12. WAP to identify the given character is vowel or not using if statement.
13. WAP to find & display greatest number out of three given numbers.
14. WAP to decide & print the entered year is leap year or not.
15. WAP to print even numbers between 1 to 100 using for loop.
16. WAP to print odd numbers from 527 to 613 using for loop.
17. WAP to print following pattern.
*****
****
***
**
*
18. WAP to print numbers from 27 to 54 using while loop
19. WAP to print numbers from 0 to 5 using do while loop.
20. WAP to perform addition, subtraction, multiplication & division using switch case statement.
21. WAP to print area of circle, triangle, rectangle,square using switch case statement.
Programs on arrays & string
23. WAP to print addition of all elements of integer array.
24. WAP to accept string from user and display on screen.
25. WAP to calculate length of string.
26. WAP to copy a string in to another.
27. WAP to convert the given string to uppercase.
28. WAP to convert the given string to lowercase.
29. WAP to demonstrate string concatenation.
30. WAP to accept string from user and display on screen using gets() and puts().
31. WAP to initialize(accepts numbers from program itself) 1D array and display the contents of it.
32. WAP to accept numbers from user for 1D array and display the contents of it.
33. WAP to initialize(accepts numbers from program itself) 2D array and display the contents of it.
34. WAP to accept numbers from user for 2D array and display the contents of it.
35. WAP to accept numbers from user for two, 2D arrays and display the contents of both and also display addition of both.
36. WAP to accept numbers from user for two, 2D arrays and display the contents of both and also display subtraction of both.
37. WAP to accept numbers from user for two, 2D arrays and display the contents of both and also display multiplication of both.
24. WAP to accept string from user and display on screen.
25. WAP to calculate length of string.
26. WAP to copy a string in to another.
27. WAP to convert the given string to uppercase.
28. WAP to convert the given string to lowercase.
29. WAP to demonstrate string concatenation.
30. WAP to accept string from user and display on screen using gets() and puts().
31. WAP to initialize(accepts numbers from program itself) 1D array and display the contents of it.
32. WAP to accept numbers from user for 1D array and display the contents of it.
33. WAP to initialize(accepts numbers from program itself) 2D array and display the contents of it.
34. WAP to accept numbers from user for 2D array and display the contents of it.
35. WAP to accept numbers from user for two, 2D arrays and display the contents of both and also display addition of both.
36. WAP to accept numbers from user for two, 2D arrays and display the contents of both and also display subtraction of both.
37. WAP to accept numbers from user for two, 2D arrays and display the contents of both and also display multiplication of both.
Programs on functions