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.