Digital Information and Computing

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/40

flashcard set

Earn XP

Description and Tags

Flashcards for reviewing key terms and concepts from the Digital Information and Computing unit.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

41 Terms

1
New cards

What is binary in the context of digital information?

A way of representing information using only two options.

2
New cards

What is a decimal in the context of digital information?

A way of representing information using ten options.

3
New cards

What is a bit?

A contraction of 'Binary Digit'; the single unit of information in a computer, typically represented as a 0 or 1.

4
New cards

How many bits are in a byte?

8 bits

5
New cards

What is an overflow error?

Error from attempting to represent a number that is too large.

6
New cards

What is a round-off error?

Error from attempting to represent a number that is too precise. The value is rounded.

7
New cards

What is analog data?

Data with values that change continuously, or smoothly, over time. Examples include music, colors of a painting, or position of a sprinter during a race.

8
New cards

What is digital data?

Data that changes discretely through a finite set of possible values

9
New cards

What is sampling in the context of digital data?

A process for creating a digital representation of analog data by measuring the analog data at regular intervals called samples.

10
New cards

What is lossless compression?

A process for reducing the number of bits needed to represent something without losing any information. This process is reversible.

11
New cards

What is lossy compression?

A process for reducing the number of bits needed to represent something in which some information is lost or thrown away. This process is not reversible.

12
New cards

What is intellectual property?

A work or invention that is the result of creativity, such as a piece of writing or a design, to which one has rights and for which one may apply for a patent, copyright, trademark, etc.

13
New cards

What is Creative Commons?

A collection of public copyright licenses that enable the free distribution of an otherwise copyrighted work, used when an author wants to give people the right to share, use, and build upon a work that they have created

14
New cards

What is a computing device?

A machine that can run a program, including computers, tablets, servers, routers, and smart sensors

15
New cards

What is a computing system?

A group of computing devices and programs working together for a common purpose

16
New cards

What is a computing network?

A group of interconnected computing devices capable of sending or receiving data.

17
New cards

What is a 'path' in the context of computing networks?

The series of connections between computing devices on a network starting with a sender and ending with a receiver.

18
New cards

What is bandwidth?

The maximum amount of data that can be sent in a fixed amount of time, usually measured in bits per second.

19
New cards

What is a protocol?

An agreed-upon set of rules that specify the behavior of some system

20
New cards

What is an IP address?

The unique number assigned to each device on the Internet.

21
New cards

What is Internet Protocol (IP)?

A protocol for sending data across the Internet that assigns unique numbers (IP addresses) to each connected device

22
New cards

What is a router?

A type of computer that forwards data across a network

23
New cards

What is a packet?

A chunk of data sent over a network. Larger messages are divided into packets that may arrive at the destination in order, out-of-order, or not at all.

24
New cards

What is redundancy in computing networks?

The inclusion of extra components so that a system can continue to work even if individual components fail, for example by having more than one path between any two connected devices in a network.

25
New cards

What does it mean for a system to be fault tolerant?

Can continue to function even in the event of individual component failures.

26
New cards

What is HTTP?

HyperText Transfer Protocol - the protocol used for transmitting web pages over the Internet

27
New cards

What is Domain Name System (DNS)?

The system responsible for translating domain names like example.com into IP addresses

28
New cards

What is the Internet?

A computer network consisting of interconnected networks that use standardized, open (nonproprietary) communication protocols.

29
New cards

What is the World Wide Web?

A system of linked pages, programs, and files.

30
New cards

What is the digital divide?

Differing access to computing devices and the Internet, based on socioeconomic, geographic, or demographic characteristics

31
New cards

What is a User Interface?

The inputs and outputs that allow a user to interact with a piece of software. User interfaces can include a variety of forms such as buttons, menus, images, text, and graphics.

32
New cards

What is input in computing?

Data that are sent to a computer for processing by a program. Can come in a variety of forms, such as tactile interaction, audio, visuals, or text.

33
New cards

What is output in computing?

Any data that are sent from a program to a device. Can come in a variety of forms, such as tactile interaction, audio, visuals, or text.

34
New cards

What is a program statement?

A command or instruction. Sometimes also referred to as a code statement.

35
New cards

What is a program?

A collection of program statements. Programs run (or “execute”) one command at a time.

36
New cards

What is Sequential Programming?

Program statements run in order, from top to bottom.

37
New cards

What is event driven programming?

Some program statements run when triggered by an event, like a mouse click or a key press

38
New cards

What is documentation in programming?

A written description of how a command or piece of code works or was developed.

39
New cards

What is a comment in programming?

Form of program documentation written into the program to be read by people and which do not affect how a program runs.

40
New cards

What is pair programming?

A collaborative programming style in which two programmers switch between the roles of writing code and tracking or planning high level progress

41
New cards

What is debugging?

Finding and fixing problems in an algorithm or program.