Data & Databases (Beginner level) Flashcards

(23 cards)

1
Q

What is “data”?

A

Information that can be stored, processed, and analyzed by computers.

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

What are common types of data?

A

Text, numbers, images, audio, video, and sensor readings.

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

What does a database do?

A

It stores data in an organized way so it can be easily searched, updated, and managed.

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

What’s the difference between data and a database?

A

Data is the raw information; a database is the system that organizes and manages it.

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

What are tables in a database?

A

Structured collections of data arranged in rows and columns.

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

What are rows in a database table?

A

Individual records — each row represents one entry (like one user or one product).

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

What are columns in a database table?

A

Attributes or fields — each column stores one type of data (like “Name,” “Email,” or “Price”).

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

What’s a record in database terms?

A

A single complete set of information stored in one row of a table.

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

What does “relational database” mean?

A

A database that organizes data into related tables that can connect through shared information.

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

What’s an example of a relational database?

A

MySQL, PostgreSQL, SQLite, or Microsoft SQL Server.

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

What is SQL short for?

A

Structured Query Language.

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

What is SQL used for?

A

Communicating with a database to create, read, update, or delete data.

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

What does “query” mean in databases?

A

A request to retrieve or manipulate data stored in the database.

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

What does CRUD stand for?

A

Create, Read, Update, Delete — the four main operations you can perform on data.

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

What is a primary key?

A

A unique identifier for each record in a table.

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

What is a foreign key?

A

A field in one table that links to the primary key in another, connecting related data.

17
Q

What is a “relationship” between tables?

A

A link showing how data in one table relates to data in another (like “Customers” and “Orders”).

18
Q

What’s the difference between a database and a spreadsheet?

A

A spreadsheet is simpler and manual; a database is designed for larger, structured, and automated data management.

19
Q

What’s a “database management system” (DBMS)?

A

Software that helps create, maintain, and interact with databases.

20
Q

Give an example of how databases are used daily.

A

Saving your login info, tracking your online purchases, or storing messages in an app.

21
Q

What’s a NoSQL database?

A

A non-relational database that stores data in flexible formats like documents or key-value pairs.

22
Q

When are NoSQL databases used?

A

When data is unstructured or constantly changing (like social media feeds or user activity logs).

23
Q

What’s the key difference between SQL and NoSQL?

A

SQL databases use structured tables; NoSQL databases use flexible, non-tabular structures.