0% found this document useful (0 votes)
3 views1 page

Class XI PS

The document is a practice sheet for Class XI Computer Science, containing various programming tasks and Boolean expression problems. It includes exercises on Python programming such as finding divisible numbers, printing prime numbers, reversing strings, and searching lists. Additionally, it features tasks related to reducing Boolean expressions and converting numbers between different numeral systems.

Uploaded by

himanshu
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)
3 views1 page

Class XI PS

The document is a practice sheet for Class XI Computer Science, containing various programming tasks and Boolean expression problems. It includes exercises on Python programming such as finding divisible numbers, printing prime numbers, reversing strings, and searching lists. Additionally, it features tasks related to reducing Boolean expressions and converting numbers between different numeral systems.

Uploaded by

himanshu
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

CS Practice Sheet

Class-XI

Part-1

1. Write a Python program to find those numbers which are divisible by 7 and multiple of
5, between 1500 and 2700 (both included).

2. Given two positive integers start and end. The task is to write a Python program to
print all Prime numbers in an Interval.

3. Write a Python Program to print :-


1
23
456
7 8 9 10
11 12 13 14 15

4. Write a Program to reverse a string entered by the user using a for loop.

5. Write a program to search for an element X in a list.

6. Using Boolean identities, reduce the given Boolean expression:


F(X, Y, Z) = X′Y + YZ′ + YZ + XY′Z′

7. F(P ,Q, R)=(P+Q)(P+R)


Reduce the expression

8. Reduce the boolean expression.


(AB’(C+BD) + A’B’)C.

9. Convert (144) from Decimal to Binary.

10. Convert (56ABDF) from Hexadecimal to Octal.

You might also like