Thursday, 3 November 2016

CLASS XI
COMPUTER SCIENCE(NEW) 

CURRICULUM /SYLLABUS
https://drive.google.com/file/d/1kSaeGvHi9gZQSBCr5FW37YA9p6QRoF70/view?usp=sharing

PROGRAMS LIST FOR CLASS-XI (COMPUTER SCIENCE) 

1. WAP to print welcome to python programming.
2. WAP to print sum of two values taking input from the user.
3. WAP to accept radius and print area of circle.
4. WAP to accept two numbers and print quotient and remainder.
5. WAP to accept three numbers and print largest of three.
6. WAP which accepts a character and displays its corresponding case character.
7. WAP to make four function calculator using switch
8. WAP to print sum of n natural numbers
9. WAP to print factorial of a number.
10. WAP to find reverse of a number.
11. WAP to find sum of individual digits of a number.
12. WAP to check if a number is a prime number.
13. WAP to check if a number is an Armstrong number.
14. WAP to print Fibonacci series.
15. WAP to print pyramid.
16. WAP to calculate cube of a number using function.
17. WAP to swap two values.
18. WAP to check whether a given character is contained in a string or not and find its position. (function returning a value)
19. WAP of counting lowercase characters using in built function.
20. WAP using random () function.
21. WAP that reads two strings and appends the first string to the second.
22. WAP to search an element in an array(linear search)
23. WAP to check if a string is palindrome or not.
24. WAP to reverse a string.
25. WAP to print largest element in an array using function.
26. WAP to add two matrices.
27. WAP to multiply two matrices.
28. WAP to print sum of diagonal elements of an array.
29. WAP to print row sum of a matrix.
30. WAP to create a Structure named student with rollno, name, dob(dd-mm-yyyy)  and marks. To Accept the data for array of structures (n elements).To print the data for all the elements in an organized way.