Python Institute PCED - Certified Entry-Level Data Analyst with Python (PCED-30-02) Free Practice Test
Question 1
The following chart shows how a student spends 24 hours in a day:

Which statements are most accurate? (Choose two.)

Which statements are most accurate? (Choose two.)
Correct Answer: C,D
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 2
You are given two lists representing daily page views and sign-ups on a website:
views = [120, 130, 128, 700, 115, 123, 119, 680, 122]
signups = [12, 15, 13, 50, 11, 14, 10, 55, 13]
You want to:
- remove outliers (views > 600), and
- calculate correlation between the cleaned lists.
Which code accomplishes this correctly? Select the best answer.
views = [120, 130, 128, 700, 115, 123, 119, 680, 122]
signups = [12, 15, 13, 50, 11, 14, 10, 55, 13]
You want to:
- remove outliers (views > 600), and
- calculate correlation between the cleaned lists.
Which code accomplishes this correctly? Select the best answer.
Correct Answer: B
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 3
You are reviewing a report that compares the number of weekly client meetings and project completion rates across teams. The table below summarizes the data for each team:

Which statement best describes the data shown above? Select the best answer.

Which statement best describes the data shown above? Select the best answer.
Correct Answer: C
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 4
A healthcare provider analyzes patient records to determine that appointment cancellations spike during weather alerts and flu season.
What type of analytics is this?
What type of analytics is this?
Correct Answer: D
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 5
An e-commerce site records every product view and purchase.
Which of the following best describes how these logs become marketing insights?
Which of the following best describes how these logs become marketing insights?
Correct Answer: A
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 6
A program compares two values using == and is. The variables a = 256 and b = 256 are defined.
What is the expected result of a is b in most Python implementations?
What is the expected result of a is b in most Python implementations?
Correct Answer: D
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).