study guide IT fco-u61 video 1- 4 Flashcards

notes

You may prefer our related Brainscape-certified flashcards:
1
Q

Front: What is the Input, Output, Processing, and Storage (I/O) Cycle?

A

Back: The I/O Cycle is a fundamental concept in computing that governs the core functions of a computer system. It encompasses the stages of input, processing, output, and storage.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Front: What happens during the Input stage of the I/O Cycle?

A

Back: During the Input stage, data is entered into the computer system, providing the raw data that the computer will process.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Front: What occurs in the Processing stage of the I/O Cycle?

A

Back: The CPU performs calculations, comparisons, and other operations to transform raw data into meaningful information.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Front: What is the purpose of the Output stage in the I/O Cycle?

A

Back: The Output stage displays or transmits the results of processing to the user or another system, either visually (e.g., monitor, printer) or audibly (e.g., speakers).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Front: What is the role of Storage in the I/O Cycle?

A

Back: Storage involves saving data to storage devices like a hard drive, SSD, or cloud storage for later use, allowing the results of processing to be retained and retrieved as needed.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Front: What are the 3 primary notational systems?

A

Back: The 3 primary notational systems are:

Decimal Notation (base-10 system)
Binary Notation (base-2 system)
Hexadecimal Notation (base-16 system

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Front: What is Decimal Notation?

A

Back: Decimal Notation uses the base-10 system, which employs ten unique symbols (0-9) to represent values.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Front: What is Binary Notation and how is it used in computing?

A

Back: Binary Notation is a system of numbers with only two values: 0 and 1. In computing, information is represented and stored as sequences of binary digits (1s and 0s), where each digit, or “bit,” represents a power of two.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Front: What is Hexadecimal Notation?

A

Back: Hexadecimal Notation is a base-16 numerical system that uses 16 distinct symbols: 0–9 for the first ten values and A–F for the remaining six. It is commonly used in computer programming, memory addressing, and debugging.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Why is it important to understand notational systems in computing?

A

Back: Understanding notational systems is important for:

Data Storage and Manipulation
Programming and Software Development
Interfacing with Humans

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Front: How does Binary Notation contribute to data storage and manipulation?

A

Back: Binary notation allows computers to represent and manipulate complex information, including numbers, characters, images, and videos, using sequences of 0s and 1s.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Front: Why do programmers frequently encounter hexadecimal values?

A

Back: Programmers encounter hexadecimal values when working with memory addresses, color codes, and machine code instructions.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Front: What is Decimal Notation (Base-10)?

A

Back: Decimal Notation is a base-10 numerical system that uses ten distinct symbols (0–9) to represent all possible numbers. It forms the foundation of everyday mathematical operations.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Front: How do notational systems help in interfacing with humans?

A

Back: Notational systems like decimal notation allow us to input and interpret data using conventional numerical methods, making computers more accessible and user-friendly.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Front: Why is Decimal Notation important in computing?

A

Back: Decimal notation is used in various programming languages and databases for storing and manipulating numerical data. It is the cornerstone of the numerical world due to its simplicity and intuitiveness.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Front: What is Binary Notation (Base-2)?

A

Back: Binary Notation is a fundamental numerical system that underpins the digital world. It uses only two symbols, 0 and 1, to represent data.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

Front: What is the primary advantage of a binary system in digital computers?

A

Back: The primary advantage of a binary system is its immediate compatibility with digital electrical systems, where 1 represents the “on” state and 0 represents the “off” state of electronic switches.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

Front: Why do digital computers use binary notation at the hardware level?

A

Digital computers use binary notation at the hardware level because it directly corresponds to the on/off states of electronic switches, making it a natural fit for digital systems.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

Front: In what fields of computer science is binary notation used?

A

back: Binary notation is used in various fields, including the design and analysis of algorithms, data structures, and computer networks.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
20
Q

Front: Why is understanding binary notation crucial in computing?

A

Back: Understanding binary notation is crucial for grasping more complex notational systems, such as hexadecimal (base-16), used in computing.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
21
Q

Front: What is Hexadecimal Notation (Base-16)?

A

Back: Hexadecimal Notation uses sixteen distinct symbols (0–9 and A–F) to represent numbers, with each digit’s position representing a power of 16 (e.g., 16^0, 16^1).

22
Q

Front: How does the hexadecimal system compare to binary notation?

A

Back: The hexadecimal system is more compact and compatible with binary notation. For example, the binary number 1010 corresponds to 10 in decimal, which is the equivalent of the hexadecimal digit A.

23
Q

Front: In which areas of digital technology is hexadecimal notation crucial?

A

Back: Hexadecimal notation is crucial for working with:

Network Protocols
Encryption Algorithms
Unique Identifiers (MAC/UUID)

24
Q

Front: How are leading zeros treated in binary and hexadecimal notation?

A

Back: In binary and hexadecimal notation, leading zeros are treated as “filler.” Binary numbers are often written with 4 digits, using extra 0s on the left to “pad the number” to become 4 digits (e.g., 0 = 0000; 1 = 0001).

25
Q

Front: What is the relationship between HEX, DEC, and BIN for the first few digits?

A

Back: The relationship between HEX, DEC, and BIN is as follows:

HEX 0 = DEC 0 = BIN 0000
HEX 1 = DEC 1 = BIN 0001
HEX 2 = DEC 2 = BIN 0010
HEX 3 = DEC 3 = BIN 0011
HEX 4 = DEC 4 = BIN 0100
HEX 5 = DEC 5 = BIN 0101
HEX 6 = DEC 6 = BIN 0110
HEX 7 = DEC 7 = BIN 0111
HEX 8 = DEC 8 = BIN 1000

26
Q

Front: What is a bit (Binary Digit)?

A

Back: A bit is the smallest unit of data in computing, which can hold a value of 0 or 1.

27
Q

Front: What is a byte?

A

Back: A byte is equivalent to 8 bits and is another basic unit of data in computing.

28
Q

Front: What is a nibble in computing?

A

Back: A nibble is a term used to refer to a single hexadecimal character, which is equivalent to 4 bits.

29
Q

Front: What are the common units of data storage, from smallest to largest?

A

Back:

Kilobyte (KB)
Megabyte (MB)
Gigabyte (GB)
Terabyte (TB)
Petabyte (PB) Each unit is approximately 1,000 times larger than the previous one.

30
Q

Front: How do digital storage units differ from general units of measure?

A

Back: In digital storage, units represent powers of 2 rather than powers of 10, leading to units like kibibytes (KiB), mebibytes (MiB), and gibibytes (GiB). For example, 1 KiB = 1,024 bytes.

31
Q
A
31
Q
A
32
Q
A
33
Q
A
34
Q
A
35
Q
A
36
Q
A
37
Q
A
38
Q
A
39
Q
A
40
Q
A
41
Q
A
42
Q
A
43
Q
A
44
Q
A
45
Q
A
46
Q
A
47
Q
A
48
Q
A
49
Q
A