2- Notations and Data Types

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

1/32

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.

33 Terms

1
New cards

What is the purpose of the input stage in computing?

To enter raw data into the computer system.

<p>To enter raw data into the computer system.</p>
2
New cards

What happens during the processing stage?

The CPU performs calculations and transforms raw data into information.

3
New cards

What is the output stage responsible for?

Displaying or transmitting results to the user or another system.

4
New cards

Why is storage important in computing?

It saves data for later use, allowing it to be retrieved as needed.

5
New cards

Why is understanding the I/O cycle important?

It helps you understand how data flows through a computer and how each component interacts.

6
New cards

What is the base-10 numerical system called?

Decimal notation.

7
New cards

What numerical system uses only 0 and 1?

Binary notation.

8
New cards

What symbols does hexadecimal use?

0–9 and A–F (base-16).

9
New cards

Why do programmers use hexadecimal?

It's compact and easier to read than binary, especially in memory addressing and debugging.

10
New cards

How are binary and hex related?

Each hex digit represents 4 binary digits (bits).

11
New cards

Why is understanding notational systems important?

They are essential for working with data at the hardware level, memory addresses, and low-level programming.

12
New cards

What is the smallest unit of data in computing?

A bit.

13
New cards

How many bits are in a byte?

8 bits.

14
New cards

What is a nibble?

4 bits or one hexadecimal digit.

15
New cards

What comes after a gigabyte in storage size?

Terabyte (TB).

16
New cards

What's the difference between megabytes (MB) and mebibytes (MiB)?

MB = 1,000,000 bytes (decimal), MiB = 1,048,576 bytes (binary).

17
New cards

What unit is used for measuring data transfer speed?

Bits per second (e.g., Kbps, Mbps).

18
New cards

What unit is used for measuring CPU speed?

Hertz (e.g., MHz = million cycles/sec, GHz = billion cycles/sec).

19
New cards

Why is it important to understand units of measure?

So you can compare hardware specs, estimate performance, and understand data size and speed.

20
New cards

What data type represents whole numbers?

Integer.

21
New cards

What data type is used for decimal numbers?

Floating-point number.

22
New cards

What does a Boolean represent?

TRUE or FALSE values.

23
New cards

What is a character data type?

A single letter, number, or symbol (e.g., 'A').

24
New cards

What is a string?

A sequence of characters (e.g., 'Hello').

25
New cards

Why is understanding data types important?

Because it determines how data is stored, processed, and validated in programs.

26
New cards

What is ASCII?

A 7-bit character encoding system with 128 characters.

27
New cards

Why was Unicode developed?

To represent a wide range of global characters, emojis, and symbols.

28
New cards

What are some common Unicode encoding formats?

UTF-8, UTF-16, UTF-32.

29
New cards

What's the main difference between ASCII and Unicode?

ASCII is limited to English; Unicode supports most of the world's languages.

30
New cards

Why is understanding character encoding important?

It ensures that text data is stored and displayed correctly across different systems and languages.

31
New cards

What is memory addressing in simple terms?

It's how the computer finds and accesses specific data in memory.

32
New cards

Why is hexadecimal used in memory addressing?

It's shorter and easier to read than binary, which helps programmers work with memory locations.

33
New cards

Why is understanding memory addressing important?

It helps in understanding how programs manage memory and how data is retrieved or stored efficiently.