Python Institute PCED-30-02 Actual Free Exam Questions & Community Discussion

  • Exam Code/Number: PCED-30-02
  • Exam Name/Title: PCED - Certified Entry-Level Data Analyst with Python
  • Certification Provider: Python Institute
  • Corresponding Certification: Python Institute PCED
  • Exam Questions: 52
  • Updated On: Jul 12, 2026
A Python script checks membership using "a" in "apple". The developer wants to understand how membership works for strings. What result will this expression produce?
Correct Answer: B Vote an answer
Explanation: Only visible for EduDump members. You can sign-up / login (it's free).
You are analyzing survey results from students about their favorite colors. The list colorsstores individual responses:

You want to:
- find the number of unique colors mentioned using NumPy, and
- determine how often each color was chosen using Counter.
Which code snippet correctly performs both tasks? Select the best answer.
from numpy import unique
Correct Answer: D Vote an answer
Explanation: Only visible for EduDump members. You can sign-up / login (it's free).
You are given a short Python script that uses both arithmetic and assignment operators. The variable x is initialized as 4, then updated using x *= 2 + 3. What will be printed when the final value of x is displayed?
Correct Answer: D Vote an answer
Explanation: Only visible for EduDump members. You can sign-up / login (it's free).
You have a list of test scores, where each entry includes a student name and a score. Some students appear more than once. You want to compute the average score for each student and store the results in a dictionary. Here's the partial code block:

Which code correctly replaces the # MISSING CODE comment to calculate the average score for each student? Select the best answer.
Correct Answer: D Vote an answer
Explanation: Only visible for EduDump members. You can sign-up / login (it's free).
Below are six possible summaries for your presentation:
- Summary 1: "The data revealed a moderate positive correlation between age and recycling frequency. While 72% of students reported recycling paper regularly, only 39% reported recycling plastic."
- Summary 2: "Analysis showed notable differences in recycling habits by material type, with paper being most recycled and plastic least recycled."
- Summary 3: "Older kids recycled more than younger ones. Paper was the most recycled item- plastic got forgotten a lot."
- Summary 4: "Student responses showed positive environmental habits overall, though participation varied by waste type."
- Summary 5: "A lot of students said they recycle. Some didn't answer every question, so we couldn't figure out everything."
- Summary 6: "We asked more than 300 students about recycling. Most said they recycle paper, but way fewer recycle plastic." Which communication style is the best fit for Group A (data scientists) and Group B (12-year- olds), respectively? Select the best answer.
Correct Answer: A Vote an answer
Explanation: Only visible for EduDump members. You can sign-up / login (it's free).
A financial technology company is reviewing its data practices to ensure legal and ethical compliance.
Which of the following actions would support responsible data handling and align with regulations like GDPR, HIPAA, and CCPA? (Choose two.)
Correct Answer: B,D Vote an answer
Explanation: Only visible for EduDump members. You can sign-up / login (it's free).
0
0
0
10