
Python InstitutePCEP - Certified Entry-Level Python Programmer
Domain 3Objective 1
PCEP-30-02 3.1 Collect and Process Data Using Lists PCEP-30 Practice Questions (Page 1)
Part of the Data Collections Tuples, Dictionaries, Lists, and Strings domain, which accounts for 25% of the PCEP-30 exam. Python Institute does not publish an official question count, but from its 45-minute exam (~20–30 total, ~5–8 in this domain), expect 1–2 from this objective — we provide 35 practice questions to prepare you well beyond it. (estimate)
35questions here
7free pages
15concepts
25%of the exam
Questions 1–5
- 1
Which of the following expressions creates an empty list?
Select an answer first - 2
What is the result of the following code? ```python items = ['a', 'b', 'c'] items.insert(1, 'x') print(items) ```
Select an answer first - 3
A developer has `data = [10, 20, 30]` and needs to find the index of the value 25. If 25 is not present, the program should print 'Not found' instead of raising an error. Which code accomplishes this?
Select an answer first - 4
Which method adds a single element to the end of a list?
Select an answer first - 5
A list `tasks = ['review', 'test', 'deploy', 'review', 'document']` contains duplicate values. A developer must remove ALL occurrences of 'review' from the list, resulting in `['test', 'deploy', 'document']`. Which approach correctly accomplishes this?
Select an answer first
Finished these 5 questions?
Review the revealed explanations, or continue through the curriculum.
Free Basic Practice is a study aid with revealable answers — not a scored exam. Examers.io is independent and not affiliated with or endorsed by Python Institute. “PCEP-30” is a trademark of its owner, used for identification only.