

MCQOPTIONS
Saved Bookmarks
This section includes 2 Mcqs, each offering curated multiple-choice questions to sharpen your Python knowledge and support exam preparation. Choose a topic below to get started.
1. |
To remove string "hello" from list1, we use which command? |
A. | list1.remove("hello") |
B. | list1.remove(hello) |
C. | list1.removeAll("hello") |
D. | list1.removeOne("hello") |
Answer» B. list1.remove(hello) | |
2. |
Suppose list1 is [1, 3, 2], What is list1 * 2? |
A. | [2, 6, 4] |
B. | [1, 3, 2, 1, 3] |
C. | [1, 3, 2, 1, 3, 2] |
D. | [1, 3, 2, 3, 2, 1] |
Answer» D. [1, 3, 2, 3, 2, 1] | |