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

Salesforce Analytics-Con-301 - Salesforce Certified Tableau Consultant

Page: 2 / 2
Total 55 questions

A client wants to migrate their Tableau Server to Tableau Cloud. The Tableau Server is configured with three sites: Finance, Strategy, and Marketing. A

consultant must provide a solution that minimizes user impact and costs.

Which configuration should the consultant recommend for Tableau Cloud to meet the client's requirements?

A.

One Tableau Cloud instance configured with a Finance project folder, Strategy project folder, and Marketing project folder

B.

One Tableau Cloud instance with two sites for Strategy and Marketing, and one Tableau Server instance for Finance

C.

Three separate Tableau Cloud instances for Finance, Strategy, and Marketing

D.

One Tableau Cloud instance configured with all workbooks in a single project

A university has data on its undergraduate students and their majors by grade level (Freshman, Sophomore, Junior, Senior). The university is interested in

visualizing the path students take as they change majors across grade levels.

Which visualization type should the consultant recommend?

A.

Chord Chart

B.

Tree Chart

C.

Radar Chart

D.

Sankey Diagram

A client is considering migrating from Tableau Server to Tableau Cloud.

Which two elements are determining factors of whether the client should use Tableau Server or Tableau Cloud? Choose two.

A.

Whether or not the client plans to leverage single sign-on (SSO)

B.

Whether or not there are large numbers of concurrent extract refreshes

C.

Whether or not the client needs the ability to connect to public, cloud-based data sources

D.

Amount of data storage used on the client's existing server

An online sales company has a table data source that contains Order Date. Products ship on the first day of each month for all orders from the previous month.

The consultant needs to know the average number of days that a customer must wait before a product is shipped.

Which calculation should the consultant use?

A.

Calc1: DATETRUNC ('month', DATEADD('month', 1, [Order Date]))

Calc2: AVG(DATEDIFF ('week', [Order Date], [Calc1]))

B.

Calc1: DATETRUNC ('month', DATEADD ('month', 1, [Order Date]))

Calc2: AVG(DATEDIFF ('day', [Order Date], [Calc1]))

C.

Calc1: DATETRUNC ('day', DATEADD('week', 4, [Order Date]))

Calc2: AVG([Order Date] - [Calc1])

D.

Calc1: DATETRUNC ('day', DATEADD ('day', 31, [Order Date]))

Calc2: AVG ([Order Date] - [Calc1])

A client has a published data source in Tableau Server and they want to revert to the previous version of the data source. The solution must minimize the impact

on users.

What should the consultant do to accomplish this task?

A.

Request that a server administrator restore a Tableau Server backup.

B.

Delete and recreate the data source manually.

C.

Select a previous version from Tableau Server, download it, and republish that data source.

D.

Select a previous version from Tableau Server, and then click Restore.

A client has a large data set that contains more than 10 million rows.

A consultant wants to calculate a profitability threshold as efficiently as possible. The calculation must classify the profits by using the following specifications:

. Classify profit margins above 50% as Highly Profitable.

. Classify profit margins between 0% and 50% as Profitable.

. Classify profit margins below 0% as Unprofitable.

Which calculation meets these requirements?

A.

IF [ProfitMargin]>0.50 Then 'Highly Profitable'

ELSEIF [ProfitMargin]>=0 Then 'Profitable'

ELSE 'Unprofitable'

END

B.

IF [ProfitMargin]>=0.50 Then 'Highly Profitable'

ELSEIF [ProfitMargin]>=0 Then 'Profitable'

ELSE 'Unprofitable'

END

C.

IF [ProfitMargin]>0.50 Then 'Highly Profitable'

ELSEIF [ProfitMargin]>=0 Then 'Profitable'

ELSEIF [ProfitMargin] <0 Then 'Unprofitable'

END

D.

IF([ProfitMargin]>=0.50,'Highly Profitable', 'Profitable')

ELSE 'Unprofitable'

END