data modeling
FDE interview questions tagged data modeling, across every topic.
13 questions · 0 unlocked for you
Concepts behind "data modeling"
The curriculum that explains the ideas these questions test.
Advanced
The Ontology (Semantic Layer)An ontology is a shared model of a business in objects, links and actions: the nouns a company argues about, how they relate, and what may be done to them. Palantir productized the idea in Foundry and the rest of the industry has since copied it, because grounding an AI system in a customer's own vocabulary is what makes it usable and auditable.⚙️ System Design for AI in Production🔒 Premium
Advanced
Dimensional Modeling and Slowly Changing DimensionsA star schema splits data into facts (the events, one row per measurement) and dimensions (the descriptive context). The hard part is not the shape, it is grain: stating what one fact row represents before you write anything, because getting that wrong is what makes every number downstream quietly incorrect.🗄️ Data & SQL Engineering🔒 Premium
Advanced
SQL vs NoSQL: Choosing a Data StoreThe choice is not relational versus modern. It is whether your access patterns are known and your data relational, in which case a relational database is almost always right, or whether one specific property (scale-out writes, a flexible document shape, traversal) dominates enough to give up joins and transactions for it.🗄️ Data & SQL Engineering🔒 Premium
