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

CS MCQ Quiz

The document is a multiple-choice quiz for Class 12 Computer Science covering Python programming concepts. It includes questions on mutable data types, user input functions, exponentiation, string methods, and recursion. Each question is followed by the correct answer indicated.

Uploaded by

haruvijay4
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)
4 views1 page

CS MCQ Quiz

The document is a multiple-choice quiz for Class 12 Computer Science covering Python programming concepts. It includes questions on mutable data types, user input functions, exponentiation, string methods, and recursion. Each question is followed by the correct answer indicated.

Uploaded by

haruvijay4
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

Class 12 Computer Science - Multiple Choice Quiz

1. Which of the following is a mutable data type in Python?


A. Tuple
B. List
C. String
D. Integer
Correct Answer: B

2. Which function is used to read input from the user?


A. read()
B. input()
C. scan()
D. get()
Correct Answer: B

3. What is the output of print(2 ** 3)?


A. 5
B. 6
C. 8
D. 9
Correct Answer: C

4. What will 'Python'.lower() return?


A. PYTHON
B. python
C. Python
D. Error
Correct Answer: B

5. What is recursion?
A. Repeating loops
B. A function calling itself
C. Nested if
D. None of the above
Correct Answer: B

You might also like