Python Institute PCED-30-02 Actual Free Exam Questions & Community Discussion
A program uses while False: followed by print statements inside the loop. The developer expects output. What will actually happen during execution?
Correct Answer: B
Vote an answer
Explanation: Only visible for EduDump members. You can sign-up / login (it's free).
Consider a Python program that assigns a string value "5" to a variable and then attempts to multiply it by an integer 3. The programmer expects numeric multiplication. What will actually happen when the code is executed?
Correct Answer: C
Vote an answer
Explanation: Only visible for EduDump members. You can sign-up / login (it's free).
You are given the following list of daily step counts:
steps = [8230, 9020, 7640, 8760, 10020, 2546, 9817]
Your task is to calculate:
- the standard deviation of the step counts,
- the average rounded up to the nearest whole number, and
- the median of the step counts.
Which code snippet correctly performs all three tasks? Select the best answer.
import statistics
steps = [8230, 9020, 7640, 8760, 10020, 2546, 9817]
Your task is to calculate:
- the standard deviation of the step counts,
- the average rounded up to the nearest whole number, and
- the median of the step counts.
Which code snippet correctly performs all three tasks? Select the best answer.
import statistics
Correct Answer: D
Vote an answer
Explanation: Only visible for EduDump members. You can sign-up / login (it's free).
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: D
Vote an answer
Explanation: Only visible for EduDump members. You can sign-up / login (it's free).
A data analyst exports a cleaned dataset from Python and wants to share it with a colleague for easy use in Excel.
Which file format is best suited for this purpose? Select the best answer.
Which file format is best suited for this purpose? Select the best answer.
Correct Answer: D
Vote an answer
Explanation: Only visible for EduDump members. You can sign-up / login (it's free).
A programmer writes a script to test operator precedence using the expression 3 + 4 * 2 ** 2. The goal is to evaluate the result correctly based on Python's operator hierarchy rules. What result should the script produce?
Correct Answer: D
Vote an answer
Explanation: Only visible for EduDump members. You can sign-up / login (it's free).
0
0
0
10
