최신Python Institute PCED - Certified Entry-Level Data Analyst with Python - PCED-30-02무료샘플문제
문제1
You are developing a temperature control module for a laboratory incubator. Your objectives are to:
- generate timestamps every 10 minutes over a 3-hour span (i.e., 0 to 180 minutes), and
- simulate five evenly spaced target temperatures between 35.0°C and 37.0°C for system calibration.
Which code snippet correctly produces both sequences using NumPy? Select the best answer.
import numpy as np
You are developing a temperature control module for a laboratory incubator. Your objectives are to:
- generate timestamps every 10 minutes over a 3-hour span (i.e., 0 to 180 minutes), and
- simulate five evenly spaced target temperatures between 35.0°C and 37.0°C for system calibration.
Which code snippet correctly produces both sequences using NumPy? Select the best answer.
import numpy as np
정답: D
설명: (ExamPassdump 회원만 볼 수 있음)
문제2
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?
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?
정답: A
설명: (ExamPassdump 회원만 볼 수 있음)
문제3
How do the analysis and visualization stages of the data lifecycle typically work together?
How do the analysis and visualization stages of the data lifecycle typically work together?
정답: B
설명: (ExamPassdump 회원만 볼 수 있음)
문제4
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.
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.
정답: A
설명: (ExamPassdump 회원만 볼 수 있음)
문제5
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.
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.
정답: D
설명: (ExamPassdump 회원만 볼 수 있음)
문제6
The following chart shows how a student spends 24 hours in a day:

Which statements are most accurate? (Choose two.)
The following chart shows how a student spends 24 hours in a day:

Which statements are most accurate? (Choose two.)
정답: C,F