
Python InstitutePCEP - Certified Entry-Level Python Programmer
Domain 3Objective 2
PCEP-30-02 3.2 Collect and Process Data Using Tuples 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 22 practice questions to prepare you well beyond it. (estimate)
22questions here
5free pages
8concepts
25%of the exam
Questions 1–5
- 1
What is the value of `t` after executing `t = ([1, 2], 3); t[0].append(4)`?
Select an answer first - 2
A developer has a tuple `config = ('admin', ['read', 'write'])` and attempts to run `config[1].append('execute')`. What is the result of this operation?
Select an answer first - 3
A developer has both a list `L = [1, 2, 3]` and a tuple `T = (1, 2, 3)` and needs to perform an operation that works identically on both. Which operation is valid for both `L` and `T`?
Select an answer first - 4
A programmer has a tuple `t = (1, 2, 3)` and needs to change the second element to 20. Which approach correctly achieves this?
Select an answer first - 5
Given `lst = [(1, 2), (3, 4)]`, how do you access the value 4?
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.