Alteryx practice exam
Fifteen questions across tools, blending, reshaping and workflow design.
The J anchor of the Join tool contains:
- Unmatched left rows
- Matched rows
- Unmatched right rows
- All rows
Answer: Matched rows — J is the inner join result.
To reproduce a SQL LEFT JOIN:
- Use J only
- Union J and L
- Union J and R
- Use Join Multiple
Answer: Union J and L — L holds the unmatched left rows.
J returns more rows than the left input had. Cause?
- Normal
- Duplicate keys on the right side
- Lost rows
- Wrong type
Answer: Duplicate keys on the right side — Summarize the right input first.
A field disappeared after Summarize because:
- It was null
- It was neither grouped nor aggregated
- Wrong data type
- It was truncated
Answer: It was neither grouped nor aggregated — Use First if you need it to survive.
Which unpivots month columns into rows?
- Cross Tab
- Transpose
- Union
- Summarize
Answer: Transpose — Transpose is the unpivot.
Cross Tab columns come out in the wrong order because:
- A bug
- It sorts new columns alphabetically
- Missing Sort tool
- Wrong aggregation
Answer: It sorts new columns alphabetically — Prefix with a number before pivoting.
Union "by position" with mismatched column order:
- Errors
- Silently misaligns values
- Matches by name
- Skips the file
Answer: Silently misaligns values — Always prefer by name.
Append Fields with 10 target and 5 source rows gives:
- 10
- 15
- 50
- 5
Answer: 50 — A Cartesian product.
Money should be stored as:
- Double
- Fixed Decimal
- Float
- V_String
Answer: Fixed Decimal — Exact decimal storage avoids accumulating error.
Shortening a V_String from 255 to 50 causes:
- An error
- Silent truncation
- Nulls
- Auto-resize
Answer: Silent truncation — Check warnings after type changes.
A running total requires:
- Summarize
- Multi-Row Formula after a Sort
- Cross Tab
- Join
Answer: Multi-Row Formula after a Sort — It depends on row order.
Your workflow duplicated data on the second run because:
- A fan-out
- The Output tool appends to existing
- Union by position
- A Browse tool
Answer: The Output tool appends to existing — Use overwrite or delete-and-append.
To read twelve identically structured CSVs:
- Twelve Input tools
- A wildcard in the input path
- Append Fields
- Cross Tab
Answer: A wildcard in the input path — Output File Name as Field records the source.
To skip part of a workflow while testing:
- Delete the tools
- Disable the container
- Add a Filter
- Rename them
Answer: Disable the container — Nothing is lost, and it is one click to restore.
A join fails on values that look identical. Most likely:
- Wrong anchor
- Whitespace or case differences in the key
- Too many rows
- Missing Browse
Answer: Whitespace or case differences in the key — Run Data Cleansing on the key first.