ExamGecko
Home Home / Tableau / TDA-C01

Tableau TDA-C01 Practice Test - Questions Answers, Page 8

Question list
Search
Search

List of questions

Search

Related questions











You are creating a new dashboard.

You need to add a button to the dashboard that allows users to export the dashboard as an image.

Which type of object should you use?

A.
Image
A.
Image
Answers
B.
Ask Data
B.
Ask Data
Answers
C.
Extension
C.
Extension
Answers
D.
Download
D.
Download
Answers
E.
Navigation
E.
Navigation
Answers
Suggested answer: C

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.

A.
IF [Subject]- 'Science' THEN 'Sciences' ELSEIF [Subject]='English' THEN 'Humanities' ELSEIF [Subject]-'Social Studies' THEN 'Humanities' ELSEIF [Subject]= 'Computer Science' THEN 'Sciences' END
A.
IF [Subject]- 'Science' THEN 'Sciences' ELSEIF [Subject]='English' THEN 'Humanities' ELSEIF [Subject]-'Social Studies' THEN 'Humanities' ELSEIF [Subject]= 'Computer Science' THEN 'Sciences' END
Answers
B.
IIF(( CONTAINS ([Subject], 'Science') = TRUE) , 'Humanities', 'Sciences')
B.
IIF(( CONTAINS ([Subject], 'Science') = TRUE) , 'Humanities', 'Sciences')
Answers
C.
IF ENDSWITH ( [Subject], 'Computer Science') THEN 'Sciences' ELSE 'Humanities' END
C.
IF ENDSWITH ( [Subject], 'Computer Science') THEN 'Sciences' ELSE 'Humanities' END
Answers
D.
CASE [Subject] WHEN 'Computer Science' THEN 'Sciences' WHEN 'Science' THEN 'Sciences' WHEN 'English' THEN 'Humanities' WHEN 'Social Studies' THEN 'Humanities' End
D.
CASE [Subject] WHEN 'Computer Science' THEN 'Sciences' WHEN 'Science' THEN 'Sciences' WHEN 'English' THEN 'Humanities' WHEN 'Social Studies' THEN 'Humanities' End
Answers
Suggested answer: A, D

Explanation:

To create a new calculated dimension field named Category that meets the given conditions, you can use either the IF or the CASE logical function. Both functions allow you to evaluate an expression and return a value based on different scenarios. Option A uses the IF function with multiple ELSEIF clauses to check the value of the Subject field and assign it to either 'Sciences' or 'Humanities'. Option D uses the CASE function with multiple WHEN clauses to do the same thing. Both options will produce the same result, but the CASE function is more concise and easier to read. Option B is incorrect because it will assign 'Humanities' to any subject that contains 'Science' in its name, which is not the desired outcome. Option C is incorrect because it will only check if the subject ends with 'Computer Science' and ignore the other subjects.Reference:

Logical Functions - Tableau

Tableau Certified Data Analyst Study Guide

You have the following chart that sorts states by the number of products each state has purchased.

Which formula should you use to include a number with the position of each state within each region?

A.
FIRST ()
A.
FIRST ()
Answers
B.
INDEX ()
B.
INDEX ()
Answers
C.
WINDOW_SUM(SUM ([Quantity]))
C.
WINDOW_SUM(SUM ([Quantity]))
Answers
D.
LOOKUP (SUM ([Quantity]))
D.
LOOKUP (SUM ([Quantity]))
Answers
Suggested answer: D

Explanation:

The LOOKUP function is used to return the value of a specified field in a different row, which can be defined relative to the current row. In this context, it can be used to include a number with the position of each state within each region by looking up the SUM([Quantity]) in each respective position.Reference:The information is inferred from general Tableau knowledge as well as the following sources:

Tableau Functions (Alphabetical)

LOOKUP

Tableau Certified Data Analyst Exam Guide

You have the following dataset:

Which grouping option should you use in Tableau Prep to group all five names automatically?

A.
Pronunciation
A.
Pronunciation
Answers
B.
Spelling
B.
Spelling
Answers
C.
Manual Selection
C.
Manual Selection
Answers
D.
Common Characters
D.
Common Characters
Answers
Suggested answer: D

Explanation:

Common Characters: Find and group values that have letters or numbers in common. This option uses the ngram fingerprint algorithm that indexes words by their unique characters after removing punctuation, duplicates, and whitespace. This algorithm works for any supported language. This option isn't available for data roles. For example, this algorithm would match names that are represented as 'John Smith' and 'Smith, John' because they both generate the key 'hijmnost'. Since this algorithm doesn't consider pronunciation, the value 'Tom Jhinois' would have the same key 'hijmnost' and would also be included in the group.

You have the following dataset:

You want to create a parameter to dynamically filter the data to produce the following results.

Which two types of parameters can you use to produce the results? Choose two.

A.
Float
A.
Float
Answers
B.
Boolean
B.
Boolean
Answers
C.
Date
C.
Date
Answers
D.
Datetime
D.
Datetime
Answers
E.
String
E.
String
Answers
F.
Integer
F.
Integer
Answers
Suggested answer: E, F

Explanation:

In the context of filtering data in Tableau, both string and integer parameters can be used to dynamically filter data. A string parameter can be used to filter text-based values, while an integer parameter is suitable for numerical values. In the provided dataset and result URLs, it appears that a unique identifier or key (which could be a string or integer) is being used to filter specific data entries.Reference:The information is based on the following sources:

An Introduction to Parameters in Tableau

Create Parameters - Tableau

In a dataset, you have a string field named Name that contains unnecessary semicolons.

Which function should you use to remove the semicolons from the Name field?

A.
TRIM
A.
TRIM
Answers
B.
CONTAINS
B.
CONTAINS
Answers
C.
REPLACE
C.
REPLACE
Answers
D.
SPLIT
D.
SPLIT
Answers
Suggested answer: C

Explanation:

The REPLACE function is used to replace all occurrences of a substring within a string with another substring. In this case, it can be used to remove the semicolons from the Name field by replacing them with an empty string. For example, REPLACE (''John;Doe'', '';'', '''') = ''JohnDoe''.Reference:The information is based on the following sources:

String Functions - Tableau

Remove special characters and add a semi colon in a word - Tableau

You connect to a database server by using Tableau Prep. The database server has a data role named Role1.

You have the following field in the data.

You need to apply the Role1 data role to the Material field.

Which two actions should you perform? Choose two.

A.
From the More actions menu of Materials, select Valid in the Show values section.
A.
From the More actions menu of Materials, select Valid in the Show values section.
Answers
B.
For the data type of the Material field, select Custom, and then select Role1.
B.
For the data type of the Material field, select Custom, and then select Role1.
Answers
C.
From the More actions menu of Materials, select Group Values, and then select Spelling.
C.
From the More actions menu of Materials, select Group Values, and then select Spelling.
Answers
D.
From the More actions menu of Materials, filter the selected values.
D.
From the More actions menu of Materials, filter the selected values.
Answers
Suggested answer: B, C

Explanation:

To apply a custom data role to a field, you need to select the data type of the field and then choose the data role from the list of available roles. This will validate the values in the field against the data role and mark any invalid values with a red exclamation mark. To fix the invalid values, you can use the Group Values option and select the Spelling algorithm, which will group values that are close in spelling and replace them with the most frequent value in the group. This will help you standardize the values in the Material field and match them with the Role1 data role.Reference:The information is based on the following sources:

Use Data Roles to Validate your Data - Tableau

New in Tableau Prep: Automatically identify data quality issues with Data Roles

You have the following Map.

You need the map to appear as shown in the following visualization.

What should you do?

A.
Drag Location to Size on the Marks card.
A.
Drag Location to Size on the Marks card.
Answers
B.
Change the opacity to 75%.
B.
Change the opacity to 75%.
Answers
C.
Drag Population to Size on the Marks card.
C.
Drag Population to Size on the Marks card.
Answers
D.
Change the mark type to Density.
D.
Change the mark type to Density.
Answers
E.
Change the mark type to Map.
E.
Change the mark type to Map.
Answers
Suggested answer: D

Explanation:

To create a map visualization that shows the concentration of data points in different locations, you need to change the mark type to Density. This will create a heatmap that uses color and size to indicate the density of the data points. You can also adjust the intensity and transparency of the density marks to suit your needs.Reference:The information is based on the following sources:

Create Heatmaps that Show Trends or Density in Tableau

Build a Simple Map - Tableau


HOTSPOT

You have the following dashboard.

When a user selects a only on the map the data on the bar chart must show only the data for the selected city. The data in the bar chart must change only when the user selects a different city How should you configure the dashboard action? (Use the dropdowns in the Answers Area to select the correct options.)


Question 79
Correct answer: Question 79

HOTSPOT

You have the following dataset.

Yon need to calculate the ranking shown in the Rank field.

How should you complete the formula? (Use the dropdowns in the Answer Area to select the correct options to complete the formula ?


Question 80
Correct answer: Question 80
Total 120 questions
Go to page: of 12