IDS Key Concept Terms

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/24

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

25 Terms

1
New cards

What’s the difference between data and information?

Data = raw facts.

Information = organized and useful.

2
New cards

What is a data lake?

Big storage for raw, mixed data types.

Not ready for users until processed.

3
New cards

Operational vs Analytical systems?

Operational = Used now, fast.

Analytical = Used later, for trends and analysis.

4
New cards

Types of data structure?

Structured = Same format.

Unstructured = Different every time.

Semi-structured = Mix of both.

5
New cards

What is a relational database?

Uses tables with rows and columns.

All records follow same format. Tables link using foreign keys.

6
New cards

What is ACID in databases?

Atomicity = All or none.

Consistency = Follow rules.

Isolation = Tasks stay separate.

Durability = Changes stay saved.

7
New cards

What is NoSQL?

Non-relational, flexible storage.

Types: Key-Value, Document, Graph.

8
New cards

What’s schema stability?

Relational = Fixed table layout.

Rarely changes. Good for consistency.

9
New cards

What’s referential integrity?

Foreign key must match a primary key.

10
New cards

What’s a join?

Combine data from two related tables.

11
New cards

What is a distributed database?

Data stored on many machines.

Handles big data volume.

12
New cards

What is MapReduce?

Map = Split job.

Reduce = Combine results.

13
New cards

Difference between Hadoop and Spark?

Hadoop = Slower, disk-based.

Spark = Faster, RAM-based.

14
New cards

Why use distributed systems?

Too much data for one server.

Needed for speed and size.

15
New cards

What is N-tier architecture?

Layers: Client → App → Database.

Easier to scale and upgrade.

16
New cards

What is in-memory database concept (TimesTen)?

Data stored in RAM for speed.

Written to disk later.

17
New cards

What’s a document database?

Flexible, stores data like JSON.

Good for unstructured content.

18
New cards

What is eventual consistency?

Data copies may mismatch for a while.

System fixes them later.

19
New cards

What is a wide-column database?

Data stored in columns.

Good for large, semi-structured data.

20
New cards

What’s a graph database?

Stores records plus their connections.

Good for social networks.

21
New cards

What is SQL?

Language for talking to databases.

22
New cards

4 SQL command groups?

DDL = Define tables.

DML = Change data.

DQL = Read data

DCL = User permissions.

23
New cards

What’s a SELECT query?

Pulls specific data from a table.

24
New cards

What is a WHERE clause?

Filters which rows to affect.

25
New cards

What’s LIKE and Wildcards?

LIKE = Search by pattern.

* = Select all.