Digital Information, Internet, and Programming Flashcards

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

1/45

flashcard set

Earn XP

Description and Tags

Flashcards generated from lecture notes on digital information, internet, and programming.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

46 Terms

1
New cards

What is digital information?

Data represented in a format suitable for use by computers, discrete and represented in binary (0s and 1s).

2
New cards

What is a bit?

A binary digit, 0 or 1.

3
New cards

What is a byte?

8 bits, commonly used to represent a character.

4
New cards

What is the function of compression?

Reducing the size of digital data.

5
New cards

What is encoding?

Converting data into a format suitable for storage or transmission.

6
New cards

What is sampling?

Converting analog signals (like sound) into digital form.

7
New cards

What is Boolean Logic?

Logical operations using true or false values.

8
New cards

What is a protocol?

A standard set of rules for transmitting data.

9
New cards

What is the smallest unit of digital information?

Bit

10
New cards

How many bits are in a byte?

8

11
New cards

What is ASCII?

A standard system that represents characters using 7 or 8 bits.

12
New cards

What is Unicode?

An encoding standard that supports a wide range of characters from different languages and symbols, often using 16 bits or more.

13
New cards

What is Lossless Compression?

A compression method where no data is lost (e.g., ZIP, PNG).

14
New cards

What is Lossy Compression?

A compression method where some data is discarded to reduce file size (e.g., MP3, JPEG).

15
New cards

What are common data types?

Integers, Floating-Point Numbers, Characters, Boolean

16
New cards

What operations are used in boolean logic?

AND, OR, NOT

17
New cards

What is primary storage?

Temporary memory, such as RAM (Random Access Memory), stores data that the CPU needs quickly while processing.

18
New cards

What is secondary storage?

Long-term storage devices, such as hard drives (HDD), solid-state drives (SSD), and optical discs (CD/DVD), store large amounts of data permanently or semi-permanently.

19
New cards

What is bandwidth?

The amount of data that can be transmitted in a given time. Measured in bits per second (bps) or multiples (e.g., Mbps, Gbps).

20
New cards

What is the function of HTTP?

Transferring web pages.

21
New cards

What is TCP/IP?

Defines how data is sent over the internet.

22
New cards

What is the internet?

A global network of interconnected computers and devices that allows for communication, data exchange, and access to information.

23
New cards

What is the function of DNS?

Translates domain names (like google.com) into IP addresses.

24
New cards

How does the Internet differ from the World Wide Web?

The Internet is a global system of interconnected networks, while the World Wide Web (WWW) is a collection of web pages and resources using HTTP/HTTPS to access web pages.

25
New cards

What is an IP Address?

A unique identifier for a device on the internet.

26
New cards

What is a Packet?

A small unit of data sent over a network.

27
New cards

What is a Router?

A device that directs internet traffic.

28
New cards

What is Latency?

The delay before data transfer begins.

29
New cards

what is a Firewall?

A security system that blocks unauthorized access.

30
New cards

What is cloud computing?

Storing data on remote servers rather than local devices.

31
New cards

What is contained in each data Packet?

Header and Payload

32
New cards

What does it mean when the internet is fault-tolerant?

It can continue functioning even if parts of the network fail.

33
New cards

What is Internet Scalability?

The internet can support an increasing number of users and devices. It uses distributed networking to handle high traffic.

34
New cards

What is the Digital Divide?

The gap between those with and without internet access.

35
New cards

What is Encryption?

Converts information into a code to prevent unauthorized access.

36
New cards

Name some common Cybersecurity Threats

Phishing, Malware, DDoS (Distributed Denial-of-Service) Attacks, Man-in-the-Middle Attacks

37
New cards

What is the purpose of a VPN?

Encrypts internet traffic to ensure privacy and security.

38
New cards

What is an Algorithm?

a set of step-by-step instructions for solving a problem or performing a task.

39
New cards

What are the three main control structures in programming?

Sequencing, Conditionals(Selection ), Loops(Iteration )

40
New cards

What are Variables?

Variables store values that can change.

41
New cards

List some Common data types

Integer, Float, Boolean, String, Lists/Arrays

42
New cards

What are Boolean expressions?

Expressions that evaluate to true or false.

43
New cards

What are Logical operators?

&& (AND), || (OR), ! (NOT)

44
New cards

What are Functions?

Reusable blocks of code

45
New cards

What are Lists?

Used to store multiple variables

46
New cards

What are Debugging Strategies?

Print Statements, Watchers, Check Logic, Test in Small Steps, Use AI