Module 1.2: Data Representation

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/30

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 12:43 PM on 8/8/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

31 Terms

1
New cards

Data Representation

Refers to the form in which data is stored, processed, and transmitted.

2
New cards

Unique Code

A common way to represent text is to agree on a ________ for every symbol that needs to be presented.

3
New cards

8-bit

ASCII uses _____ strings to represent the English alphabet. 

4
New cards

Representing images

Images are also encoded using bit patterns.

5
New cards

Pixels

an image is divided into many small picture elements or also called as ______.

6
New cards

Binary Form

The appearance of each pixel is then encoded in _______.

7
New cards

Bitmap

The collection of these encoded pixels is known as the _______ of the image.

8
New cards

3 bytes

A color image usually uses _______ to represent a single pixel.

9
New cards

Graphic Interchange Format (GIF)

One such method that reduces the size of a bitmap file by reducing the number of colors that can be assigned to a pixel to 256.

10
New cards

256

Graphic Interchange Format (GIF) one such method that reduces the size of a bitmap file by reducing the number of colors that can be assigned to a pixel to ______.

11
New cards

Joint Photographic Experts Group (JPEG)

Developed a compression method which is commonly used to compress photographs.

12
New cards

Representing Numbers

Represent all numbers as binary numbers we can actually represent the numbers 0 to 127 with 8 bits.

13
New cards

Floating Point

The IEEE Standard for Floating-Point Arithmetic (IEEE 754) is a technical standard for floating-point computation which was established in 1985 by the Institute of Electrical and Electronics Engineers (IEEE).

14
New cards

Institute of Electrical and Electronics Engineers

IEEE

15
New cards

754 floating point

IEEE Standard ________ is the most common representation today for real numbers on computers, including Intel-based PC’s, Macs, and most Unix platforms.

16
New cards

The Sign of Mantissa
The Biased Exponent
The Normalized Mantissa

IEEE 754 has 3 basic components.

17
New cards

The Sign of Mantissa

This is as simple as the name. 0 represents a positive number while 1 represents a negative number.

18
New cards

The Biased Exponent

The exponent field needs to represent both positive and negative exponents. A bias is added to the actual exponent in order to get the stored exponent.

19
New cards

The Normalized Mantissa

The mantissa is part of a number in scientific notation or a floating-point number, consisting of its significant digits. Here we have only 2 digits.

20
New cards

32 bits

Single Precision IEE 754 Floating-Point Standard consists of ______ bits.

21
New cards

1 bit (31st bit)

Single Precision IEE 754 Floating-Point Standard consists of ______ bit of signs.

22
New cards

8 bits

Single Precision IEE 754 Floating-Point Standard consists of ______ bits of exponent.

23
New cards

23 bits

Single Precision IEE 754 Floating-Point Standard consists of ______ bits of mantissa.

24
New cards

1 bit (63rd bit)

Double Precision IEE 754 Floating-Point Standard consists of ______ bit of signs.

25
New cards

11 bits

Double Precision IEE 754 Floating-Point Standard consists of ______ bits of exponent.

26
New cards

52 bits

Double Precision IEE 754 Floating-Point Standard consists of ______ bits of mantissa.

27
New cards

Zero
Denormalized
Infinity
Not A Number (NAN)

IEEE has reserved some values that can ambiguity.

28
New cards

Zero

A special value denoted with an exponent and mantissa of 0. -0 and +0 are distinct values, though they both are equal.

29
New cards

Denormalized

If the exponent is all zeros, but the mantissa is not then the value is a _________ number. This means this number does not have an assumed leading one before the binary point.

30
New cards

Infinity

The values +infinity and -infinity are denoted with an exponent of all ones and a mantissa of all zeros. The sign bit distinguishes between negative infinity and positive infinity. Operations with infinite values are well defined in IEEE.

31
New cards

Not A Number (NAN)

Used to represent a value that is an error. This is represented when exponent field is all ones with a zero sign bit or a mantissa that it not 1 followed by zeros. This is a special value that might be used to denote a variable that doesn’t yet hold a value.