data quality
FDE interview questions tagged data quality, across every topic.
11 questions · 0 unlocked for you
Concepts behind "data quality"
The curriculum that explains the ideas these questions test.
Core
Data Quality and ValidationA deployment lives or dies on the customer's data, and that data is worse than their sample suggested. The job is to build automated quality gates (schema, null, range, uniqueness, freshness) at the boundary, quarantine bad records instead of failing the whole batch, and alert on the rate so a Tuesday-shaped degradation surfaces before a dashboard goes wrong. This is the difference between a pipeline that fails loudly and one that lies quietly.🗄️ Data & SQL EngineeringSign in
Core
Deduplication and LSHExact duplicates fall out of hashing the normalized content, but near-duplicates (the same record with a typo, a reordered address, boilerplate that repeats across documents) need similarity, not equality. MinHash estimates Jaccard similarity cheaply, and Locality-Sensitive Hashing buckets similar signatures so you only compare likely pairs instead of all O(n^2). This is a constant reflex when merging messy enterprise data and when curating training corpora.🗄️ Data & SQL EngineeringSign in
Advanced
Text-to-SQLText-to-SQL turns a business question into a query against the customer's warehouse, and its characteristic failure is a query that runs and returns a plausible wrong number. What decides whether it works is not the model: it is what schema the model is allowed to see, whether the metric is measured by execution rather than by matching SQL text, and whether the product shows its assumptions and refuses when it has none.🤖 Retrieval & Agents🔒 Premium
