New Year Sale Special Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: xmas50

CompTIA DA0-002 - CompTIA Data+ Exam (2025)

Page: 3 / 4
Total 121 questions

A data analyst needs to join together a table data source and web API data source using Python. Which of the following is the best way to accomplish this task?

A.

Convert the data from the API and database to a varchar format and convert them to pandas DataFrames that are then merged together.

B.

Convert the data from the API and database to a JSON format and convert them to pandas DataFrames that are then merged together.

C.

Convert the data from the API and database to a TXT format and convert them to pandas DataFrames that are then merged together.

D.

Convert the data from the API and database to a string format and convert them to pandas DataFrames that are then merged together.

A senior manager needs a report that can be generated and accessed at any time. Which of the following delivery methods should a data analyst use?

A.

Ad hoc

B.

Dynamic

C.

Self-service

D.

Static

Which of the following supports capabilities such as automatic versioning, corruption checks, KPIs, and user authentication?

A.

Notebook

B.

REST API

C.

Pipeline

D.

Source control

The sales department wants to include the composition of total sales amounts across all three sales channels in a report. Given the following sample sales table:

Sales channel

Month

Sales (million $)

Digital

January

135

Store

February

145

Online

March

165

Store

April

200

Store

May

125

Online

June

155

Digital

July

120

Online

August

145

Digital

September

160

Which of the following visualizations is the most appropriate?

A.

Pivot table

B.

Pie chart

C.

KPI card

D.

Box plot

Which of the following is the best reason for a company to use a CSV file to share data instead of an Excel file?

A.

CSV files can store different types of encoding.

B.

CSV files are not vendor-specific.

C.

CSV files are smaller in size.

D.

CSV files are easier to change in text editors.

The following SQL code returns an error in the program console:

SELECT firstName, lastName, SUM(income)

FROM companyRoster

SORT BY lastName, income

Which of the following changes allows this SQL code to run?

A.

SELECT firstName, lastName, SUM(income) FROM companyRoster HAVING SUM(income) > 10000000

B.

SELECT firstName, lastName, SUM(income) FROM companyRoster GROUP BY firstName, lastName

C.

SELECT firstName, lastName, SUM(income) FROM companyRoster ORDER BY firstName, income

D.

SELECT firstName, lastName, SUM(income) FROM companyRoster

A data analyst receives a request for the current employee head count and runs the following SQL statement:

SELECT COUNT(EMPLOYEE_ID) FROM JOBS

The returned head count is higher than expected because employees can have multiple jobs. Which of the following should return an accurate employee head count?

A.

SELECT JOB_TYPE, COUNT DISTINCT(EMPLOYEE_ID) FROM JOBS

B.

SELECT DISTINCT COUNT(EMPLOYEE_ID) FROM JOBS

C.

SELECT JOB_TYPE, COUNT(DISTINCT EMPLOYEE_ID) FROM JOBS

D.

SELECT COUNT(DISTINCT EMPLOYEE_ID) FROM JOBS

A Chief Executive Officer requests a report that must:

• Summarize the company metrics in a simple way.

• Be clear and concise.

• Be easily understood by all company levels.

• Be accessible and updated without manual intervention.

Which of the following communication approaches best meets these requirements?

A.

Executive summary

B.

Slide presentation

C.

Key performance indicator dashboard

D.

Open data portal

A manager requests a report that returns results based on a user's profile. Which of the following best describes this type of report?

A.

Real-time

B.

Static

C.

Dynamic

D.

Snapshot

A developer builds an online survey that requires all questions to have an answer. Which of the following inconsistencies does this setting prevent?

A.

Missing values

B.

Duplication

C.

Data corruption

D.

Completeness