Designer Core - Data Preparation Flashcards

1
Q

Which In/Out (Green) tools are on this exam?

A

Browse, Input Data, Output Data, and Text Input

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Which preparation (Blue) tools are on this exam?

A

Data Cleansing, Filter, Formula, Select Records, Sample, Select, Unique, and Sort

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Select all the ways in which a Browse tool can be added to the Canvas:

  1. Right click a tool on the Canvas and select “Add Browse After”
  2. Select a tool on the Canvas and hit CTRL + Shift + B
  3. Drag a Browse tool on the Canvas from the Tool Palette
A

All 3

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

True or False? The Filter tool includes two output anchors.

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

True or False? Data is only created or modified when a workflow with a configured Output Data tool is run

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What does “Take File/Field Name from Table” mean on the Output tool?

A

It means that you can create multiple output files based on field names

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

True or False? The Input Data tool can only connect to files.

A

False

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Which of the following are present in the configuration options for Alteryx Databases, Microsoft Excel workbooks, and CSVs? Select all that apply.
1. First Row Contains Data
2. Delimiters
3. Record Limit
4. Output File Name as Field

A

3 and 4

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

If a cell in a field has leading spaces, then the color of the data quality bar for that portion of data would be:

A

Red

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

If a cell in a field is [Null], then the color of the data quality bar for that portion of data would be:

A

Yellow

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

If a field has no leading and trailing white space and no Null cells, then the color of the data quality bar would be:

A

Green

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

True or False? The Formula tool is the only tool in Alteryx where you can create expressions

A

False. There are 14 tools in Designer that have an expression editor. You can enter functions in any of them.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

From the options listed below, how can functions be inserted into the Expression Editor?

  1. Typing the name of a function directly into the Expression Editor and selecting the function from the auto-completed options
  2. Right clicking in the Expression Editor and selecting a function
  3. Clicking on the Function Library icon to navigate and select a function
A

1 and 3

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

True or false? Conditional statements can be used with any data type.

A

True. All data types may be manipulated by conditional statements

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

True or False? Null() and IsNull() is found in the same category in the Functions library

A

False. Null() is in the “Specialized” category, while IsNull() is in the “Test” category

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Which expression would convert Null values in the column [Status] to the value “Not available”?

A

IF IsNull([Status]) THEN “Not Available” ELSE [Status] ENDIF