Summer Certification Sale 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: save70

Exactprep Analytics-DA-201 Questions

Salesforce Certified Tableau Data Analyst Questions and Answers

Question 9

Open the link to Book1 found on the desktop. Open the Line worksheet.

Modify the chart to show only main and max values of both measures in each region.

Options:

Question 10

Open the link to Book1 found on the desktop. Open Disciplines worksheet.

Filter the table to show the members of the Top10 set and the members of the Bottom10 set. There should be a total of 20 rows.

Options:

Question 11

A Data Analyst wants to create the following table in a view:

Which function should the analyst use to create the Position column?

Options:

A.

INDEX

B.

RANK

C.

FIRST

D.

LAST

Question 12

You have the following dataset.

You want to create a new calculated dimension field named Category that meets the following conditions:

. When Subject is Computer Science or Science, Category must be Sciences.

. When Subject is English or Social Studies, Category must be Humanities.

Which two logical functions achieve the goal? Choose two.

Options:

A.

IF [Subject]- ' Science ' THEN ' Sciences '

ELSEIF [Subject]= ' English ' THEN ' Humanities '

ELSEIF [Subject]- ' Social Studies ' THEN ' Humanities '

ELSEIF [Subject]= ' Computer Science ' THEN ' Sciences '

END

B.

IIF(( CONTAINS ([Subject], ' Science ' ) = TRUE) , ' Humanities ' , ' Sciences ' )

C.

IF ENDSWITH ( [Subject], ' Computer Science ' ) THEN ' Sciences ' ELSE ' Humanities ' END

D.

CASE [Subject]

WHEN ' Computer Science ' THEN ' Sciences '

WHEN ' Science ' THEN ' Sciences '

WHEN ' English ' THEN ' Humanities '

WHEN ' Social Studies ' THEN ' Humanities '

End