Final Exam Review: AWS, Security, ERD, SQL, and Tableau

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/52

flashcard set

Earn XP

Description and Tags

Comprehensive vocabulary flashcards covering AWS infrastructure, information security, ERD core components, SQL syntax, and Tableau visualization workspace fundamentals.

Last updated 12:25 AM on 5/1/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

53 Terms

1
New cards

Cloud Computing

The delivery of computing services over the internet instead of using local computers or servers.

2
New cards

CapEx

Traditional IT model where businesses buy and maintain equipment.

3
New cards

OpEx

Cloud model where businesses rent and scale as needed.

4
New cards

Region

A geographic location

5
New cards

Availability Zone (AZ)

A group of data centers within the AWS infrastructure.

6
New cards

Edge Location

AWS infrastructure component used for faster content delivery.

7
New cards

IaaS

Infrastructure as a Service; provides the most control as you manage the infrastructure, exemplified by EC2.

8
New cards

PaaS

Platform provided ex. by Elastic Beanstalk.

9
New cards

SaaS

Software as a Service; ready-to-use software, exemplified by Gmail.

10
New cards

EC2

Virtual servers providing compute power; charged per hour.

11
New cards

S3

File storage service; charged per storage used.

12
New cards

RDS

AWS service for relational databases.

13
New cards

Lambda

Serverless automation service; charged per request.

14
New cards

Confidentiality

CIA Triad principle ensuring only authorized users can access data.

15
New cards

Integrity

CIA Triad principle ensuring data is accurate and not altered.

16
New cards

Availability

CIA Triad principle ensuring data is accessible when needed.

17
New cards

MFA

Multi-Factor Authentication; a security tool for authentication.

18
New cards

ACL

Access Control List; user-based permissions used for access control.

19
New cards

RBAC

Role-based permissions used for access control.

20
New cards

Symmetric Encryption

Protecting data using one key.

21
New cards

Asymmetric Encryption

Protecting data using public/private keys.

22
New cards

Phishing

A common password security attack involving fake emails.

23
New cards

Pretexting

A common password security attack involving impersonation.

24
New cards

3-2-1 Rule

Backup strategy requiring 3 copies of data, 2 different storage types, and 1 offsite copy.

25
New cards

Incremental Backup

A backup type that records changes since the last backup.

26
New cards

Differential Backup

A backup type that records changes since the last full backup.

27
New cards

ERD

Entity Relationship Diagram; a visual representation of database structure showing Tables, Columns, and Connections.

28
New cards

Entity

ERD component representing a Table (e.g., Student, Course).

29
New cards

Attribute

representing a Column (e.g., Student_ID, Name).

30
New cards

Relationship

A core ERD component acting as a Verb to connect entities (e.g., enrolls in, teaches).

31
New cards

Cardinality

Shows how many records relate between tables, such as 1:1, 1:M, or M:M.

32
New cards

Primary Key (PK)

A unique identifier for a record in a database table.

33
New cards

Foreign Key (FK)

A key that links tables together in a database structure.

34
New cards

VARCHAR

A data type used for text.

35
New cards

Conceptual ERD

A high-level ERD used to design databases.

36
New cards

Logical ERD

A detailed ERD that adds attributes and keys.

37
New cards

SQL

Structured Query Language; used to manage and retrieve data.

38
New cards

Schema

The table structure including columns and data types.

39
New cards

ORDER BY

The SQL clause used to sort results.

40
New cards

FETCH FIRST 'XX' ROWS ONLY

SQL syntax used to display only a specific number of rows.

41
New cards

Dimensions

Blue, categorical fields in Tableau such as names, dates, or categories.

42
New cards

Measures

Green, numerical values in Tableau used for mathematical calculations.

43
New cards

Marks Card

Tableau workspace part that controls color, size, shape, labels, detail, and tooltip.

44
New cards

Inner Join

Returns matching records from both tables.

45
New cards

Union

Combines rows from two datasets with the same structure.

46
New cards

Stories

Tableau feature used to create guided, interactive presentations using snapshots of dashboards.

47
New cards

Steps to create an ERD

1. Identify Entities

2. Identify Relationships

3. Determine Cardinality

4. Add Attributes

5. Draw Diagram

48
New cards

INT

numbers

49
New cards

BOOLEAN

True/False

50
New cards

Conceptual ERD

High level

51
New cards

Logical ERD

Detailed

52
New cards

Physical ERD

Actual database implementation

53
New cards

Query Order

Select, from, where, order by