4 : data types

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

1/26

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 8:16 PM on 1/22/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

27 Terms

1
New cards

Data that is defined through different numbers
- two sub categories : discrete data and continuous data

  • # data

Quantitative data

2
New cards

a type of Quantitative data ….
Data that can be counted with a certain number of values

How many people you dated - Whole numbers you count. No decimals!

ex : drop down list

Discrete data

3
New cards

a type of Quantitative data ….

Data that can be counted but with changing values
- ex : earnings or sales = constantly changing

continuous data

4
New cards

Data is arranged into groups or categories based on some kind of quality

qualitative data

5
New cards

what are the two sub categories of qualitative data

nominal data ordinal data

6
New cards

this form of qualitative data is information that has no natural order

  • ex : everyones favorite color

nominal data

7
New cards

this form of qualitative data is information that has a natural order

ex : good better best , low med high

ordinal data

8
New cards

When this data type is set as a text data type it is ? which allows the field to store any type of letter and/or number

alphanumeric

9
New cards

date data type can store the time as well . true or false?

true

10
New cards

this data type stores numbers, and does not allow for text

  • allows for calculations

    • integers or decimals

number data types

11
New cards

this data type is commonly used for Yes/No, True/False, and On/Off responses. It is represented by a number that is either 1 or 0.

  • two values

boolean

12
New cards

data is not static, it is ?

dynamic

13
New cards

this data is specific

  • follows existing convention

  • fits nicely into tables

    • can be restructured to fit into other structured data systems like data warehouses

structured data

14
New cards

this type of data is not organized in a predefined manner .

  • text, images, or videos

    • if we want to work with this type of data we need to use a data lake or BLOB storage ( video, audio , and text )

unstructured data

15
New cards

This type of data does not meet the rigid standards of structured data, so it cannot be stored in a relational database. However, ? data does contain some structure through the use of tags and attributes that group the data and describe its storage methods.

  • examples : XML files, emails, json files , zipped files

semi structured data

16
New cards

files in which some form of character (tab, comma) separates each field of data from the other data fields.

  • most common type CSV file

delimited file

17
New cards

Delimited files that are exported out of a system ? files, they do not have a live connection to the database and require additional steps when the data is to be refreshed with a new file

  • data has been exported from the database in real-time

flat file

18
New cards

? delimited file , This uses a ?, which has five spaces to be able to separate each of the fields in that file

Uses a different character, like a pipe,
Ex : .CSV .TAV . TSV .TXT

tab

19
New cards

? data is limited to character data that exceeds 4000 bytes i.e storing pages in a book

CLOB

20
New cards

this data language …..,.

  • most commonly used when interacting with a database

    • uses a series of statements to provide info to the database

sql

21
New cards

what are the two statements covered that provide information to the database

select statement, where keyword

22
New cards

this sql statement ….

The way you're going to query information from a database that selects the fields you want to select

select statement

23
New cards

this sql statement…..

Allows you to be able to select something where a certain condition happens

where statements

24
New cards

this data language…..

The language that we use to write web pages and show them to the world i.e display info

▪ A semi-structured environment and we use tags to be able to dictate what parts of information is being displayed at any given time

HTML

25
New cards

this data language……

Another text-based market language, much like HTML, but its purpose is different

It interacts really well with JavaScript

The goal here is to transfer data, not to display on the screen

  • uses opening and closing tags

XML

26
New cards

this programming language is used to get data to and from websites

  • interacts with java script

  • key value pair

JSON

27
New cards