0% found this document useful (0 votes)
37 views2 pages

Class Xi Cs (New) List of Practical

The document lists 22 programming problems for a class 11 computer science subject. The problems cover a range of fundamental programming concepts like input/output, arithmetic calculations, conditional statements, loops, patterns, strings, and SQL commands. Some example problems include writing a program to calculate the sum of two integers, find the largest of three numbers, print a Fibonacci series, and perform SQL operations like creating tables, inserting data, and joining tables.

Uploaded by

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

Class Xi Cs (New) List of Practical

The document lists 22 programming problems for a class 11 computer science subject. The problems cover a range of fundamental programming concepts like input/output, arithmetic calculations, conditional statements, loops, patterns, strings, and SQL commands. Some example problems include writing a program to calculate the sum of two integers, find the largest of three numbers, print a Fibonacci series, and perform SQL operations like creating tables, inserting data, and joining tables.

Uploaded by

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

LIST OF PRACTICAL

Class: XI Subject: CS (New)


1. Write a program to accepts two integers and print their sum.
2. Write a program that accepts radius of a circle and prints its area.
3. Write a program that inputs a student’s marks in three subjects (out of
100) and prints the percentage marks.

4. Write a program to compute area of square and triangle.


5. Write a program to compute simple interest.
6. Write a program to read two numbers and prints their quotient and
reminder.
7. Write a program to find whether a given number is even or odd?
8. Write a program to find largest among three integers.
9. Write a program to find lowest among three integers.
10. Write a program to print roots of a quadratic equation ax2 + bx +c=0
(where a≠0).
11. Program to perform arithmetic calculation using switch. This program
inputs two operands and an operator then displays the calculated result.

12. Program to print first n Natural numbers and their sum.


13. Program to calculate factorial of an integer using while loop.
14. Program to check whether the given number is palindrome or not.
15. Write a program to print table of a given number.
16.Write a program to print Fibonacci series. i.e. 0 1 1 2 3 5 8 …
17. Write a program to print following patter on screen
*
**
***
****

18. Program to add the odd numbers up to(and including) a given value N
and print the result.
19. Compute the greatest common divisor and the least common multiple of
two integers.
20. Given two integers x and n, compute x rest to power n.
21. Test if a number is equal to the sum of the cubes of its digits. Find the
smallest and largest such numbers
22. Data Management: SQL Commands At least the following SQL
commands should be covered during the labs: create, insert, delete,
select, and join. The following are some representative assignments. 
Create a student table with the student id, name, and marks as
attributes where the student id is the primary key.  Insert the details of
a new student in the above table.  Delete the details of a particular
student in the above table.  Use the select command to get the details
of the students with marks more than 80.  Create a new table (name,
date of birth) by joining two tables (student id, name) and (student id,
date of birth).  Create a new table (order ID, customer Name, and
order Date) by joining two tables (order ID, customer ID, and order
Date) and (customer ID, customer Name, contact Name, country).

You might also like