Python Institute PCED - Certified Entry-Level Data Analyst with Python - PCED-30-02 FREE EXAM DUMPS QUESTIONS & ANSWERS
A Python loop uses range(5, 0, -2) to iterate backward. The programmer expects a decreasing sequence. Which values will actually be generated when this loop runs?
Correct Answer: D
Vote an answer
Explanation: Only visible for FreeCram members. You can sign-up / login (it's free).
You are reading a data.csvfile line by line. To prepare each line for formatting with f-strings, you need to remove extra whitespace and split the values by commas.
Which line should you insert to correctly clean and parse the input?
Which line should you insert to correctly clean and parse the input?
Correct Answer: D
Vote an answer
Explanation: Only visible for FreeCram 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: B
Vote an answer
Explanation: Only visible for FreeCram members. You can sign-up / login (it's free).
A Python script includes the expression not False and True. The developer is unsure how logical operators are evaluated in terms of precedence. What will be the final Boolean result of this expression?
Correct Answer: B
Vote an answer
Explanation: Only visible for FreeCram members. You can sign-up / login (it's free).
How do the analysis and visualization stages of the data lifecycle typically work together?
Correct Answer: C
Vote an answer
Explanation: Only visible for FreeCram members. You can sign-up / login (it's free).
An online retailer collects customer reviews, order transaction logs, and product ratings.
Which of the following correctly classifies these types of data? Select the best answer.
Which of the following correctly classifies these types of data? Select the best answer.
Correct Answer: A
Vote an answer
Explanation: Only visible for FreeCram members. You can sign-up / login (it's free).