Web Data Storage 3.3

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

1/28

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 6:04 PM on 6/18/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

29 Terms

1
New cards
JSON (JavaScript Object Notation)
An open standard file format and data interchange format that uses human-readable text to store and transmit data.
2
New cards
XML (Extensible Markup Language)
A markup language that provides rules to define simple and complex data structures.
3
New cards
Cookie
A small text file created by a webserver and stored on a client’s system to identify the client.
4
New cards
Local Storage
Data that is created and stored on the client’s system by JavaScript and remains on the system indefinitely until the client removes it.
5
New cards
Persistent Cookie
A cookie that has a set expiration time and remains on the client’s system until that time.
6
New cards
Session Cookie
A cookie that does not have a set expiration time and expires when the user closes the browser window or tab.
7
New cards
Session Storage
Data that is created and stored on the client’s system by JavaScript and only remains on the system until the browser window or tab is closed.
8
New cards
Third-Party Cookie
A cookie created by an organization other than the one that owns the website that the user is visiting.
9
New cards
Web Storage
Storage that resides within a client’s browser and is available to websites and web applications.
10
New cards
Backward Compatibility
The ability of new software or hardware to support software or hardware that was created using older versions of the same software or hardware.
11
New cards
Deserialize
The process of converting serialized plain-text data into the programming equivalent in the memory.
12
New cards
File Stream Object
A programming object that represents the data going into or being read out of a digital file. Also called file pointer.
13
New cards
Serialize
The process of converting programming objects and data structures into the plain-text equivalent for long-term storage.
14
New cards
Database Management Systems (DBMS)
Software designed to maintain access to some form of data storage, either relational or nonrelational.
15
New cards
Database Schema
The definition of a database structure.
16
New cards
No-SQL Database
A model of data storage that uses alternative methods of storing and organizing data.
17
New cards
Relational Database
A model of data storage that stores similar data within related tables of data.
18
New cards
Future-Proof
A development approach or technique that helps ensure something will remain usable in the future and as other things change and evolve.
19
New cards
Authentication Token
A digital file that serves as proof of authentication and can be used to access one or more systems without having to reauthenticate each time.
20
New cards
Availability
The state of being on and accessible to users.
21
New cards
CIA Triad
A common model that forms the basis for the development of security systems and includes the facets of confidentiality, integrity, and availability.
22
New cards
Confidentiality
The state of keeping information private and preventing access to those who are not authorized to view the information.
23
New cards
DOMPurify
A free JavaScript API that utilizes DOM-only features to help prevent XSS attacks through sanitization.
24
New cards
Integrity
In computer science, the state of being authentic and unaltered.
25
New cards
Risk Analysis
The process of identifying and analyzing potential issues that could negatively impact business operations, projects, or assets.
26
New cards
Risk Assessment
The process of identifying potential hazards and analyzing what could happen if the hazard or disaster occurred.
27
New cards
Risk Management
The continuing process of identifying, analyzing, evaluating, and treating exposure to loss and monitoring the risk controls and financial resources required to mitigate any impact on the organization.
28
New cards
Sanitization
The process of detecting potentially malicious code placed inside of a form field and rendering it ineffective in order to prevent XSS attacks.
29
New cards
Validation
The process of ensuring that only the correct type of data is entered into the correct field.