APCSP.CodeHS with JS.Unit 8-Digital Information (47)

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/48

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.

49 Terms

1
New cards

binary

A base 2 system of numbers that represents data through 0s and 1s

2
New cards

Byte

8 bits

3
New cards

Overflow

When a number becomes too large to fit into the number of bits allocated

4
New cards

What happens when there is overflow

The computer will report an error and truncate the number (cap all results to the max number and lose data)

5
New cards

Encodings

A system in which certain sequences of bits represent different things. Computers that both understand an encoding can pass and open files between each other with it.

6
New cards

ASCII

American Standard system using 8 bits to store the alphanumeric and other characters

7
New cards

Unicode

Universal system using hexadecimal numbers to make character sets for languages -- a superset that includes ASCII

8
New cards

Analog data

Real world data, infinitely detailed

9
New cards

Digital data

Finite data in binary representation

10
New cards

Sampling

Taking a snippet of analog data at regular time intervals and storing it as digital data

11
New cards

Sampling rate

Number of samples in a second (how OFTEN)

12
New cards

Compression algorithms

Algorithms that reduce space needed to represent a file

13
New cards

Lossless compression algorithms

Algorithms that reduce the size without loss of information, so original data can be reconstructed

14
New cards

Lossy compression algorithms

Algorithms that reduce size by discarding non-important information, reducing size but affecting quality

15
New cards

Run-length encoding (RLE) algorithm

A type of lossless image compression in which the computer replaces each row with numbers that say how many consecutive pixels are the same color (3W, 4R, 3W) For black and white always starts with white

16
New cards

What should you consider when choosing how to compress

Consider scenario. If you need a picture for something important (big screen) you want high quality but if it is for a website you can use lower quality to allow faster download

17
New cards

Copyright

Licenses and rights that give owners the ability to determine if and when their work can be copied

18
New cards

Public domain

Works with expired copyrights (mostly expire after 70 years in the US) enter this, anyone can use and adapt without restriction. Can also declare work into the public domain

19
New cards

Fair use

Allows limited use of copyrighted materials for certain purpose by considering the purpose and character of use, nature of copyrighted work, how much work is used, impact of use, value of work

20
New cards

Digital rights management (DRM)

tools that restrict where and how a user can use copyrighted media (ex spotify has DRM layer that prevent users from listening to songs elsewhere)

21
New cards

The Digital Millenium Copyright Act (DMCA)

Criminalizes production and distribution of technology that is used to circumvent DRM. Copyright owners can use to send notices to and sue violators

22
New cards

Copyright licenses

Licenses that owners can apply to their work to lessen copyright restrictions so more people can use their work

23
New cards

Creative Commons

Offers 6 licenses that make sure an author is attributed

24
New cards

Conditions used in Creative Commons licenses

Share alike - reused work uses same license as original work.

Non-Commercial - reused work used non-commercially

No Derivatives - the original work cannot be modified

25
New cards

Open source licenses

Programmers can use them to make code publicly available for others to reuse it properly

26
New cards

Benefits of open source

Can write less code, try out many libraries, and support many developers who create the libraries

27
New cards

Bit width

How many bits are used to store sampled analog data (how MUCH)

28
New cards

Heuristic

A problem solving approach (algorithm) to find a satisfactory solution where finding an optimal or exact solution is impractical or impossible.

29
New cards

Kilobyte (KB)

about 1 thousand bytes

30
New cards

Megabyte (MB)

about 1 million bytes

31
New cards

Gigabyte (GB)

about a billion bytes

1,073,741,824 (2^30) bytes. 1,024 Megabytes, or 1,048,576 Kilobytes.

32
New cards

Terabyte (TB)

1,099,511,627,776 (2^40) bytes, 1,024 Gigabytes, or 1,048,576 Megabytes.

33
New cards

Petabyte (PB)

A Petabyte is 1,125,899,906,842,624 (2^50) bytes, 1,024 Terabytes, 1,048,576 Gigabytes, or 1,073,741,824 Megabytes.

34
New cards

Exabyte (EB)

1,152,921,504,606,846,976 (2^60) bytes, 1,024 Petabytes, 1,048,576 Terabytes, 1,073,741,824 Gigabytes, or 1,099,511,627,776 Megabytes.

35
New cards

Image

A type of data used for graphics or pictures.

36
New cards

metadata

Data that describes other data. Ex. A digital image may include metadata that describes the size of the image, number of colors, or resolution.

37
New cards

pixel

short for "picture element;" it is the fundamental unit of a digital image, typically a tiny square or dot which contains a single point of color of a larger image.

38
New cards

filetype

A name given to a specific kind of file that indicates how the bits contained in the file should be read. Examples are .pdf, .png, and .doc.

39
New cards

.jpeg

Stands for "Joint Photographic Experts Group." A popular image file format which is commonly used by digital cameras to store photos since it supports 224 or 16,777,216 colors. This format uses "lossy compression" by exploiting the eye's inability to perceive small colour details as well as small details of light-and-dark in an image.

40
New cards

.gif

Stands for "Graphics Interchange Format." This format is often used for line drawings and animations because of it's limited ability to represent colors (8 bit format which means the maximum number of colors supported by the format is 256.) This format uses lossless compression.

41
New cards

.mp3

audio file - lossy compression

42
New cards

.mp4

vidio file - lossy compression

43
New cards

.png

image file - lossless compression

44
New cards

.pdf

portable document format is a file format used to present documents in a manner independent of application software, hardware, and operating systems

45
New cards

.bmp

image file - lossless compression

46
New cards

.zip

an archive file format that supports lossless data compression of any type of file.

47
New cards

digital divide

the gulf between those who have ready access to computers and the Internet, and those who do not.

48
New cards

abstraction

Removing unnecessary details to focus on the essential characteristics. To break problems up into separate parts which can then be solved separately and recombined to form a complete solution. To focus on and use something based only on what it does and without concern for how that functionality is accomplished.

49
New cards

hexadecimal number system

A base-16 number system which consists of the digits 0-9 and A-F. Each of these symbols can occur in each place value position.