Summer Special Limited Time 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: exc65

Which of the following is found in metadata?

A.

Transformations

B.

Data lineage

C.

Syntax

D.

Variable types

A data analyst creates a report, and some of the fields are empty. Which of the following conditions should the analyst add to a query to provide a list of all the records with empty fields?

A.

WHERE [ColumnName] = NULL

B.

WHERE [ColumnName] IS NULL

C.

WHERE [ColumnName] IS NOT NULL

D.

WHERE [ColumnName] = 'NULL'

A data analyst receives a notification that a customized report is taking too long to load. After reviewing the system, the analyst does not find technical or operational issues. Which of the following should the analyst try next?

A.

Check that the appropriate filters are applied.

B.

Check data source connections.

C.

Check for data structure changes in the report.

D.

Check whether other peers have the same issue.

An analyst is building a reporting deck. The deck must include tracking and visualizing metrics and row-level security. Which of the following actions should the analyst take after meeting all of the requirements?

A.

Show a mock-up to the team.

B.

Explain the desired level of reporting detail.

C.

Present an analysis of the data.

D.

Find out the project due date.

A data analyst wants to use the following tables to find all the customers who have not placed an order:

Customers table

ID

Name

Address

Products table

ID

Name

Customer_ID

Which of the following SQL statements is the best way to accomplish this task?

A.

SELECT * FROM CUSTOMERS AS C LEFT JOIN PRODUCTS AS P ON C.ID = P.Customer_ID WHERE P.Customer_ID IS NULL

B.

SELECT * FROM CUSTOMERS AS C INNER JOIN PRODUCTS AS P ON C.ID = C.IDWHERE COUNT(P.) = 0

C.

SELECT * FROM PRODUCTS AS P INNER JOIN CUSTOMERS AS C ON P.Customer_ID = C.ID WHERE (SELECT COUNT(P.) = 0)

D.

SELECT * FROM PRODUCTS AS P LEFT JOIN CUSTOMERS AS C ON P.Customer_ID = C.ID WHERE P.Customer_ID IS NOT NULL

A project manager requests an unscheduled report that provides a list of clients. Which of the following frequencies is best for this report?

A.

Annual

B.

Daily

C.

Weekly

D.

Ad hoc

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

A data analyst is creating a new dataset that involves bringing together the following datasets:

Name

ID

Date of birth

Frank

23525

3/19

Martha

11290

6/13

Ellen

12141

11/4

ID

Address

City

State

23525

1234 Harding

Chicago

IL

11040

935 Terrace Hills

Chino

CA

11290

2 Speedway

Miami

FL

Which of the following would be the output if the data analyst does a FULL JOIN?

A.

Name

ID

Date of birth

Address

City

State

Frank

23525

3/19

1234 Harding

Chicago

IL

Martha

11290

6/13

935 Terrace Hills

Chino

CA

Ellen

12141

11/4

2 Speedway

Miami

FL

B.

Name

ID

Date of birth

Address

City

State

Frank

23525

3/19

1234 Harding

Chicago

IL

Martha

11290

6/13

935 Terrace Hills

Chino

CA

Ellen

12141

11/4

2 Speedway

Miami

FL

C.

Name

ID

Date of birth

Address

City

State

Frank

23525

3/19

1234 Harding

Chicago

IL

Martha

11290

6/13

2 Speedway

Miami

FL

Ellen

12141

11/4

935 Terrace Hills

Chino

CA

D.

Name

ID

Date of birth

Address

City

State

Frank

23525

3/19

1234 Harding

Chicago

IL

Martha

11290

6/13

2 Speedway

Miami

FL

Ellen

12141

11/4

11040

935 Terrace Hills

Chino

CA

A data analyst is evaluating all conditions in a query. Which of the following is the best logical function to accomplish this task?

A.

OR

B.

NOT

C.

AND

D.

IF

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