Python Unit Test - 1 Paper
Python Unit Test - 1 Paper
Python Unit Test - 1 Paper
UNIT TEST – I
Semester: V Program: TYBBA-CA Course Code: CA-504 Total Marks: 20
Course Name: Python Day & Date: Friday, 15th Sept.-2023 Time: 60 Minutes
Q.
No.
1 Attempt any Six from the following: [6*2 = 12 Marks]
a. Distinguish between List and Tuple.
b. Enlist any FIVE features of Python.
c. Explain the syntax of for loop with sample example.
d. Predict the output :
for x in range(3,8):
for y in range(5,9):
if x * y > 8:
break
print(x * y)
***************************END***************************